gpt4 book ai didi

Spring tx :annotation-driven ignores mode when load time weaving is enabled in tomcat

转载 作者:行者123 更新时间:2023-11-28 21:52:54 27 4
gpt4 key购买 nike

我正在尝试使用注释配置事务。当我在启用加载时间编织的环境中运行时(例如,tc 服务器或带有编织类加载器的 tomcat),我的事务拦截似乎由 aspectj 处理,但由于它没有完全配置它不起作用(我收到消息 "Skipping transactional joinpoint [<method name>] because no transaction manager has been configured" )。

我的配置状态 <tx:annotation-driven mode="proxy" transaction-manager="transactionManager" /> .无论如何,这些都应该是默认值,但我明确指定代理模式并获取 aspectj 模式。如果我切换到模式 aspectj 它可以工作,但我们的生产环境没有启用 LTW,我更愿意在所有地方使用模式代理。

知道发生了什么事吗?我在 Spring 3.0.5 上,正在使用 HibernateTransactionManager .

最佳答案

您必须在 spring xml 中定义 transactionManager bean。

<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>

关于 Spring tx :annotation-driven ignores mode when load time weaving is enabled in tomcat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4128342/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com