hibernate 5 创建 Session 时,所需的ServiceRegistry

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate 5 创建 Session 时,所需的ServiceRegistry相关的知识,希望对你有一定的参考价值。

hibernate 5 创建 Session,代码如下:


SessionFactory factory = null;

Configuration configuration = new Configuration().configure();

configuration.addClass(News.class);

ServiceRegistry registry = new StandardServiceRegistryBuilder().applySettings(configuration.getProperties()).build();

factory = configuration.buildSessionFactory(registry);

Session session = factory.openSession();


注意:

与之前版本不同的:

1)

    configuration.addClass(News.class);

2)

    ServiceRegistry的实现需用StandardServiceRegistryBuilder

    之前版本用的是 ServiceRegistryBuilder


本文出自 “程序员瑞欣” 博客,请务必保留此出处http://rayshine.blog.51cto.com/6941801/1884823

以上是关于hibernate 5 创建 Session 时,所需的ServiceRegistry的主要内容,如果未能解决你的问题,请参考以下文章

hibernate操作步骤(代码部分)

Hibernate getCurrentSession()和openSession()的区别

2.Hibernate 会话

Hibernate的核心接口

hibernate 创建session

Hibernate批量操作