标签: hibernate session java-ee jpa
我从使用Hibernate API切换到JPA API。现在我想知道因为EntityMangager(Factory)没有任何SessionFactory#getCurrentSession这样的方法。
是否有与EntityManger相似的方法构建?
答案 0 :(得分:0)
您可以使用Session session = entityManager.unwrap(Session.class)获取会话,Session为org.hibernate.Session。
Session session = entityManager.unwrap(Session.class)
Session
org.hibernate.Session