SessionFactory.getCurrentSession与EntityManager?

时间:2015-01-22 09:39:59

标签: hibernate session java-ee jpa

我从使用Hibernate API切换到JPA API。现在我想知道因为EntityMangager(Factory)没有任何SessionFactory#getCurrentSession这样的方法。

是否有与EntityManger相似的方法构建?

1 个答案:

答案 0 :(得分:0)

您可以使用Session session = entityManager.unwrap(Session.class)获取会话,Sessionorg.hibernate.Session