java.lang.IllegalStateException:没有可用的事务性EntityManager

时间:2022-12-05 20:32:38

Project use Hibernate (JPA), Spring and Maven. My entity and DAO in a separate JAR.

项目使用Hibernate(JPA),Spring和Maven。我的实体和DAO在一个单独的JAR中。

pom.xml:

pom.xml中:

<project ...>
    ...
    <artifactId>database</artifactId>

    <dependencies>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>3.5.4-Final</version>
        </dependency>
    </dependencies>    
</project>

DAO:

DAO:

public class AbstractDAO<T extends BaseEntity> implements GenericDAO<T> {


    private final Class<T> persistentClass;

    private EntityManager entityManager;

    public AbstractDAO(Class<T> entityClass) {
        super();
        this.persistentClass = entityClass;
    }

    @PersistenceContext
    public void setEntityManager(EntityManager entityManager) {
        this.entityManager = entityManager;
    }


    public EntityManager getEntityManager() {
        return entityManager;
    }

    ...

    public void fooBar() {
       //Exception from this line
       Session session = getEntityManager().unwrap(Session.class);
       ...
    }

    ....

}

}

I have a module, which use Spring.

我有一个使用Spring的模块。

pom.xml:

pom.xml中:

<project ...>
...
<artifactId>api</artifactId>

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-orm</artifactId>
        <version>${spring.version}</version>
    </dependency>
    ....
</dependencies>

 ...    
</project>

AppContext.xml:

AppContext.xml:

<bean id="authService" scope="singleton" class="com.test.management.AuthServiceImpl" />

    <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean" name="EntityManagerFactory">
        <property name="persistenceUnitName" value="default"></property>
        <property name="dataSource" ref="dataSource"></property>
        <property name="jpaVendorAdapter">
            <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
                <property name="showSql" value="true" />
                <property name="generateDdl" value="true" />
                <property name="databasePlatform" value="${db.dialect}" />
            </bean>
        </property>     
    </bean>

    <!-- Values are defined in db.properties -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
        <property name="driverClassName" value="${db.driver}" />
        <property name="url" value="${db.url}" />
        <property name="username" value="${db.username}" />
        <property name="password" value="${db.password}" />
    </bean>

    <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" name="TransactionManager">
        <property name="entityManagerFactory" ref="entityManagerFactory"></property>
    </bean>

    <tx:annotation-driven />

    <bean id="userDAO" scope="singleton" class="com.test.database.dao.impl.UserDAOImpl">
    </bean>


    <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />

</beans> 

Service:

服务:

public class AuthServiceImpl implements AuthService {

    @Autowired
    private UserDAO userDAO;


    @Override
    public void authorization() {
        userDAO.fooBar();

    }
}

When I'm trying to get the session from EntityManager, I catch this exception:

当我试图从EntityManager获取会话时,我抓住了这个异常:

java.lang.IllegalStateException: No transactional EntityManager available
    at org.springframework.orm.jpa.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler.invoke(SharedEntityManagerCreator.java:223)
    at $Proxy121.unwrap(Unknown Source) 

3 个解决方案

#1


30  

You must surround the method with the @Transactional annotation:

您必须使用@Transactional注释包围该方法:

@Transactional
public void fooBar() {
   //Exception from this line
   Session session = getEntityManager().unwrap(Session.class);
   ...
}

And enable the spring @Transactional processing with the following declaration in your spring's xml configuration file (txManager is the id of the your manager).

并在spring的xml配置文件中使用以下声明启用spring @Transactional处理(txManager是您的经理的id)。

<tx:annotation-driven transaction-manager="txManager" />

#2


18  

Try this ?

尝试这个 ?

entityManager=entityManager.getEntityManagerFactory().createEntityManager();
Session session = (Session) entityManager.unwrap(Session.class);

#3


4  

None of this was working for me, I finally found that the issue was that I was making my method @Transactional instead I needed the class to be @Transactional

这些都不适合我,我终于发现问题是我正在制作我的方法@Transactional而不是我需要这个类是@Transactional

#1


30  

You must surround the method with the @Transactional annotation:

您必须使用@Transactional注释包围该方法:

@Transactional
public void fooBar() {
   //Exception from this line
   Session session = getEntityManager().unwrap(Session.class);
   ...
}

And enable the spring @Transactional processing with the following declaration in your spring's xml configuration file (txManager is the id of the your manager).

并在spring的xml配置文件中使用以下声明启用spring @Transactional处理(txManager是您的经理的id)。

<tx:annotation-driven transaction-manager="txManager" />

#2


18  

Try this ?

尝试这个 ?

entityManager=entityManager.getEntityManagerFactory().createEntityManager();
Session session = (Session) entityManager.unwrap(Session.class);

#3


4  

None of this was working for me, I finally found that the issue was that I was making my method @Transactional instead I needed the class to be @Transactional

这些都不适合我,我终于发现问题是我正在制作我的方法@Transactional而不是我需要这个类是@Transactional