spring,hibernate和声明式事务实现:没有活动事务

时间:2010-11-09 21:09:25

标签: hibernate spring transactions annotations

我尝试使声明式交易工作。

这是我的spring.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: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的包内。

这是我的尝试:

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

但这会引发异常:

  

org.hibernate.HibernateException:没有活动事务,createQuery无效

为什么transactionManager不起作用?我希望@Transactional注释所有事务都将由spring框架管理。 我该怎么办?

谢谢大家。

2 个答案:

答案 0 :(得分:20)

删除以下行,当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

  

关闭此标志以露出平原   Hibernate SessionFactory用   Hibernate的默认值   getCurrentSession()行为,   支持普通的JTA同步   只要。或者,简单地覆盖   相应的Hibernate属性   “的hibernate.current_session_context_class”。

答案 1 :(得分:1)

我似乎记得当类实现这样的接口时,您可以使用类似于@Controller的构造型注释类来获得奇怪的行为。

我不是100%确定解决方法是什么,但请尝试以下一种或两种方法:

  • @TransactionalTestControllerImp.findAll()移至TestController.findAll()
  • proxy-target-class="true"添加到您的<tx:annotation-driven/>

一个或两个或那些应该做的伎俩,但两者都不理想。我之前在其他问题中已经看到了这一点,并且从未完全了解导致它的原因。