0

我在这里学习教程: http ://www.javacodegeeks.com/2013/05/hibernate-4-with-spring.html 在我的 Java Web 应用程序中启用“@Transactional 注释”但未能使其运行适当地。请告知是否真的需要JTA经理,为什么?

请注意,我的 webapp 基于 Spring 3 + Hibernate 4 + Tomcat 7。

背景和我的疑问:

我当前的 Web 应用程序使用我自己的自定义类(实现 HandlerInterceptor)来启用一个 hibernatesession-per-request 基础。现在我想通过使用“@Transactional 注释”来提高我的应用程序的可维护性,因为这样可以节省很多代码行。

据我了解,@Transactional 基本上是依靠 AOP 的概念来保​​证会话(Hibernate session)在注解的方法中准备好使用的。这似乎与 JTA 无关。但我想知道为什么我不能让它在 Tomcat 7 中的 webapp 上运行(没有 JTA-provider)。

在谷歌上搜索了几次之后,看起来需要 JTA。这让我感到困惑,因为这似乎是一个非常基本的功能,不应该将复杂的 JTA 提供程序作为要求。

这是我得到的错误:

org.hibernate.HibernateException: No Session found for current thread
    org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:97)
    org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:988)
    ...

这是我用于测试的代码:

....

@Autowired
org.hibernate.SessionFactory sessionFactory;

@Transactional
@RequestMapping(method = RequestMethod.GET)
protected String home() {
    Session session = sessionFactory.getCurrentSession(); // I expected the session is good to use now
    Province p = (Province) session.get(Province.class, 1L); // This causes no session found error :(


    return "home";
}

春季 XML:

....
<tx:annotation-driven/>
<context:component-scan base-package="..."/>

<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
    <property name="jndiName" value="java:comp/env/jdbc/..."/>
    <property name="lookupOnStartup" value="true"/>
    <property name="proxyInterface" value="javax.sql.DataSource"/>
</bean>

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.hbm2ddl.auto">update</prop>

            <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</prop>
        </props>
    </property>
</bean>

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

<bean id="persistenceExceptionTranslationPostProcessor" class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/>
....

谢谢 !

4

2 回答 2

0

只是一个猜测:

您的控制器在某种 dispatcher-servlet.xml 中定义,因此与定义 <tx:annotation-driven/> 的 applicationContext 分开。如果我没记错的话,您想使用 @Transactional 增强的组件需要与 < tx:annotation-driven> 在同一上下文中。所以@Transactional 不起作用。

于 2013-08-09T00:58:06.683 回答
0

那是我的愚蠢错误。Spring 使用 CGLIB 来代理带有 @Transactional 注释的方法,似乎 CBLIB 无法增强受保护的方法。

protected String home() {

将此更改为

public String home() {

解决了这个问题。

于 2013-08-10T17:21:25.597 回答