Spring+Hibernate配置中获取EntityManager
Posted
技术标签:
【中文标题】Spring+Hibernate配置中获取EntityManager【英文标题】:Obtaining EntityManager in Spring + Hibernate configuration 【发布时间】:2014-10-05 07:11:36 【问题描述】:我有一个 Spring MVC 4.0 应用程序,我正在学习 JPA。我使用 Hibernate 作为 JPA 实现。
我可以按照this 教程中的说明配置 Hibernate。它工作正常,但我必须使用 Hibernate 的 Session
对象:
@Autowired
SessionFactory sessionFactory;
...
Session session = sessionFactory.openSession();
现在,我想改用 JPA 的 EntityManager
。我在同一个网站上关注了this 教程(配置非常相似)。我尝试通过这种方式获取EntityManager
对象:
@PersistenceContext
EntityManager entityManager;
我收到一条运行时消息:
java.lang.IllegalStateException: No transactional EntityManager available
然后,我按照this答案中的建议,尝试使用以下代码:
@PersistenceContext
EntityManager entityManager;
...
entityManager=entityManager.getEntityManagerFactory().createEntityManager();
它工作了几次(大约 9 次重复的方法调用),然后应用程序冻结。
在 Spring + Hibernate 配置中获取EntityManager
的正确方法是什么?
我现在不需要任何 Spring 事务功能。我只想访问EntityManager
并使用 JPA。
Spring/Hibernate 配置文件 (hibernate.xml)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
<bean id="dataSource" class="org.apache.tomcat.dbcp.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/test_db" />
<property name="username" value="test" />
<property name="password" value="test" />
</bean>
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="net.myproject" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" />
</property>
<property name="jpaProperties">
<props>
<prop key="hibernate.hbm2ddl.auto">update</prop>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="persistenceExceptionTranslationPostProcessor" class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />
<tx:annotation-driven />
</beans>
我尝试使用EntityManager
的类
@Repository
public class ProductsService
@PersistenceContext
EntityManager entityManager;
@Transactional
public GridResponse<Product> getProducts(GridRequest dRequest)
// The following line causes the exception: "java.lang.IllegalStateException: No transactional EntityManager available"
Session session = entityManager.unwrap(Session.class);
//...
...
【问题讨论】:
This 可能会对您有所帮助。 对于@PersistenceContext EntityManager entityManager;
方法,添加 tx:annotation-driven
并将您使用 entityManager 的方法标记为 @Transactional
。
@Andrei 感谢您的回复。我在之前的实验中已经尝试过这些东西,我刚才又尝试了一次。我收到了同样的错误信息:java.lang.IllegalStateException: No transactional EntityManager available
。 (没有<tx:annotation-driven />
和@Transactional
,我得到同样的例外)。
发布更多源代码,例如您在哪里使用该 EntityManager(方法和类定义以及您可能在类上放置的任何注释)。它是一个网络应用程序吗?如果是这样,请发布 web.xml
并指定在哪个 .xml 文件中可以找到您已经发布的配置。
你也可以发spring-mvc-servlet.xml
吗?
【参考方案1】:
对于@PersistenceContext EntityManager entityManager;
方法,将tx:annotation-driven
添加到您的.xml 配置中,并将您使用entityManager
的方法标记为@Transactional
。
【讨论】:
这一行:Session session = entityManager.unwrap(Session.class);
抛出异常,但我可以使用entityManager
毫无问题地执行查询。当我从 Hibernate API 迁移到 JPA 时,我不再需要 Hibernate 的 Session
s,我可以完全删除该行。但是,我的代码仅适用于 <tx:annotation-driven />
。所以这个回答是正确的。【参考方案2】:
它可以与@Autowired 一起使用,如https://***.com/a/33742769/2028440所示
@Autowired
private EntityManager entityManager;
【讨论】:
另一个提示是尽可能在类的构造函数上调用@Autowired
,以避免在每个属性上单独使用它。以上是关于Spring+Hibernate配置中获取EntityManager的主要内容,如果未能解决你的问题,请参考以下文章
从 Spring 依赖管理获取 Hibernate 版本以在 Gradle 中配置插件
Spring Boot 应用程序运行正常,但 hibernate 和 MySql 相关属性不起作用
spring整合hibernate,在获取sessionFactory的时候报错,求解决办法!!