TransactionManager为null

时间:2013-03-14 20:46:46

标签: spring hibernate session spring-mvc transactions

我无法让@Transactional工作。 我在applicationContext.xml

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

上述交易管理器不会被注入任何地方。

我在spring-servlet.xml中:

<!-- Allows transaction to be demarcated using @Transactional within classes.-->
<tx:annotation-driven
    mode="proxy"
    proxy-target-class="true" />

我有一个具有很少DI的门面豆

<!-- Bean for getting a handle onto the DAO's for accessing the database. -->
<bean id="evoDaoFacade" class="com.xxx.yyy.zzz.discovery.hibernate.EvoTAMDAOFacade">
...
    <property name="topoObjectDao" ref="topoObjectDao"></property>
    <property name="sessionFactory" ref="sessionFactory"></property>

在我的代码中,我通过以下方式将上面的外观放入我的非实例类: 在spring-servlet.xml

<bean
    id="ApplicationContextProvider"
    class="com.xxx.yyy.zzz.config.ApplicationContextProvider">
</bean>

代码:

EvoTAMDAOFacade evoDao = (EvoTAMDAOFacade) ApplicationContextProvider.getBean("evoDaoFacade");

但是当我使用通过外观访问的DAo时:

TopoObject topoobj = evoDao.getTopoObjectDao().findById(topoId);

其中findById如下:

@Transactional
public TopoObject findById( TopoObjectId id) {
        log.debug("getting TopoObject instance with id: " + id);
        try {
            TopoObject instance = (TopoObject) sessionFactory.getCurrentSession()
                    .get("com.xxx.yyy.zzz.discovery.hibernate.TopoObject", id);
            return instance;
        } catch (RuntimeException re) {
            log.error("get failed", re);
            throw re;
        }
    }

我得到hibernate异常,说org.hibernate.HibernateException:没有Hibernate Session绑定到线程,并且配置不允许在这里创建非事务性的

我的@transactional用法有什么问题?

0 个答案:

没有答案