gpt4 book ai didi

spring - Spring+Hibernate配置中获取EntityManager

转载 作者:IT老高 更新时间:2023-10-28 13:52:08 25 4
gpt4 key购买 nike

我有一个 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);

//...
}

...

最佳答案

对于 @PersistenceContext EntityManager entityManager; 方法,将 tx:annotation-driven 添加到您的 .xml 配置中,并标记您使用 entityManager 作为 @Transactional.

关于spring - Spring+Hibernate配置中获取EntityManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25260527/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com