spring、hibernate 和声明式事务实现:没有活动事务 [英] spring, hibernate and declarative transaction implementation: there is no active transaction

查看:31
本文介绍了spring、hibernate 和声明式事务实现:没有活动事务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试使声明式事务起作用.

i try to make declarative transaction work.

这是我的 spring.xml 文件:

This is my spring.xml file:

<?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:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"

       xsi:schemaLocation=
       "http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="url" value="jdbc:h2:tcp://my/db/path" />
        <property name="username" value="username" />
        <property name="password" value="password" />
    </bean>

    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="packagesToScan" value="data" />
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.H2Dialect</prop>
                <prop key="hibernate.current_session_context_class">thread</prop>
                <prop key="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">update</prop>
            </props>
        </property>
    </bean>

    <context:component-scan base-package="test" />

    <tx:annotation-driven/>

    <bean id="transactionManager"  class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

</beans>

这是我的控制器实现:

//file TestController.java
public interface TestController {

    public List<Test> findAll();

}

//file TestControllerImp.java
@Controller
public class TestControllerImp implements TestController{

    @Autowired
    private SessionFactory sessionFactory;

    /**
     * @return the sessionFactory
     */
    public SessionFactory getSessionFactory() {
        return sessionFactory;
    }

    /**
     * @param sessionFactory the sessionFactory to set
     */
    public void setSessionFactory(SessionFactory sessionFactory) {
        this.sessionFactory=sessionFactory;
    }

    @Transactional
    public List<Test> findAll() {
        return sessionFactory.getCurrentSession().createQuery("from Test").list();
    }

}

两者都在名为 test 的包内.

Both are inside package called test.

这是我的尝试:

TestController tc=context.getBean(TestController.class);
List<Test> list=tc.findAll();

但这会引发异常:

org.hibernate.HibernateException: createQuery 在没有活动事务的情况下无效

org.hibernate.HibernateException: createQuery is not valid without active transaction

为什么事务管理器不起作用?我希望通过 @Transactional 注释所有事务都将由 spring 框架管理.我能做什么?

Why transactionManager doesn't work? I hope with @Transactional annotation all transactions will be managed by spring framework. What can i do?

谢谢大家.

推荐答案

去掉下面几行,Spring管理事务时不需要:

Remove the following lines, they are not needed when transactions are managed by Spring:

<prop key="hibernate.current_session_context_class">thread</prop> 
<prop key="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</prop> 

实际上,设置hibernate.current_session_context_class有效地禁用了Spring事务管理,参见AbstractSessionFactoryBean.setExposeTransactionAwareSessionFactory() javadoc:

Actually, setting hibernate.current_session_context_class effectively disables Spring transaction management, see AbstractSessionFactoryBean.setExposeTransactionAwareSessionFactory() javadoc:

关闭此标志以暴露平原休眠 SessionFactory 与休眠的默认设置getCurrentSession() 行为,支持普通 JTA 同步只要.或者,只需覆盖对应的 Hibernate 属性hibernate.current_session_context_class".

Turn this flag off to expose the plain Hibernate SessionFactory with Hibernate's default getCurrentSession() behavior, supporting plain JTA synchronization only. Alternatively, simply override the corresponding Hibernate property "hibernate.current_session_context_class".

这篇关于spring、hibernate 和声明式事务实现:没有活动事务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆