hibernate4.3版本构造SessionFactory方法

Posted 黑色力量

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate4.3版本构造SessionFactory方法相关的知识,希望对你有一定的参考价值。

hibernate3.X构造SessionFactory方法

        //读取hibernate.cfg.xml文件  
Configuration cfg = new Configuration().configure();
        //建立SessionFactory  
SessionFactory factory = cfg.buildSessionFactory();

 在hibernate4.3中函数buildSessionFactory()已经作废,以下是新的构造方法

    private static ServiceRegistry serviceRegistry = null;
    private static Configuration cfg = null;
    private static SessionFactory sessionFactory = null;

        cfg = new Configuration().configure();
        serviceRegistry = new StandardServiceRegistryBuilder().applySettings(cfg.getProperties()).build();
        sessionFactory = cfg.buildSessionFactory(serviceRegistry);

        //取得session  
        Session session = null;

        //开启session  
        session = sessionFactory.openSession();

 

以上是关于hibernate4.3版本构造SessionFactory方法的主要内容,如果未能解决你的问题,请参考以下文章

[转]Struts2.3.16.1+Hibernate4.3.4+Spring4.0.2 框架整合

hibernate4.3 无法获取数据库最新值

spring+orm框架的兼容问题

Wildfly 10 中的 Hibernate 4.3 支持

Spring4 整合Hibernate4,Struts2

Hibernate4集成 Annotation使用教程