0

我不能@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

<!-- 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;
        }
    }

我得到休眠异常说 org.hibernate.HibernateException: No Hibernate Session bound to thread,并且配置不允许在这里创建非事务性会话

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

4

0 回答 0