web-dev-qa-db-ja.com

Spring + Hibernate構成でのEntityManagerの取得

Spring MVC 4.0アプリケーションがあり、JPAを学んでいます。 JPA実装としてHibernateを使用します。

this チュートリアルの説明に従ってHibernateを構成できます。正常に動作しますが、HibernateのSessionオブジェクトを使用する必要があります。

@Autowired
SessionFactory sessionFactory;

...

Session session = sessionFactory.openSession();

ここで、代わりにJPAのEntityManagerを使用します。同じWebサイトで this チュートリアルに従っています(設定は非常に似ています)。そして、私はこの方法でEntityManagerオブジェクトを取得しようとしました:

@PersistenceContext
EntityManager entityManager;

ランタイムメッセージが表示されました。

Java.lang.IllegalStateException: No transactional EntityManager available

次に、 this answerの提案に従い、次のコードを使用しようとしました。

@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);

        //...
    }

...
17
Alex

のために @PersistenceContext EntityManager entityManager;アプローチ、追加tx:annotation-drivenを.xml構成に追加し、entityManagerを使用するメソッドに@Transactional

15
Andrei Stefan

https://stackoverflow.com/a/33742769/202844 に示すように、@ Autowiredで使用できます。

@Autowired
private EntityManager entityManager;
3
Bằng Rikimaru