Hibernate基础工具类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hibernate基础工具类相关的知识,希望对你有一定的参考价值。

 1 import org.hibernate.Session;
 2 import org.hibernate.SessionFactory;
 3 import org.hibernate.cfg.Configuration;
 4 
 5 public class Hibernate_Util {
 6 
 7     private static SessionFactory factory;
 8 
 9     static {
10         Configuration configure = new Configuration().configure();
11         factory = configure.buildSessionFactory();
12         Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
13 
14             @Override
15             public void run() {
16                 System.out.println("资源关闭了");
17                 factory.close();
18             }
19         }));
20     }
21 
22     public static Session openSession() {
23         Session session = factory.openSession();
24         return session;
25     }
26 
27     public static Session getCurrentSession() {
28         Session session = factory.getCurrentSession();
29         return session;
30     }
31 }

 

以上是关于Hibernate基础工具类的主要内容,如果未能解决你的问题,请参考以下文章

Hibernate工具类_抽取重复核心代码

elasticsearch代码片段,及工具类SearchEsUtil.java

Hibernate 基础入门

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

[vscode]--HTML代码片段(基础版,reactvuejquery)

Hibernate中,通过自定义创建一个泛型工具类GenericsUtils,代码编好,可是myeclipse中提示出错。