spring tx:在 tomcat 中启用加载时编织时,注释驱动忽略模式
我正在尝试使用注释配置事务。当我在启用了加载时编织的环境中运行时(例如,带有编织类加载器的 tc 服务器或 tomcat),似乎我的事务拦截是由方面j 处理的,但由于它没有完全配置,所以它不起作用(我收到消息“正在跳过事务连接点 [<方法名称>],因为尚未配置事务管理器”
)。
我的配置状态为
。无论如何,这些都应该是默认值,但我明确指定代理模式并获取aspectj模式。如果我切换到 modej 它可以工作,但是我们的生产环境没有启用 LTW,我更喜欢在任何地方使用模式代理。
知道发生了什么事吗?我使用的是 Spring 3.0.5,并且正在使用 HibernateTransactionManager
。
I am trying to configure transactions using annotations. When I am running in an environment with load time weaving enabled (e.g., tc server or tomcat with the weaving classloader), it seems that my transaction interception is handled by aspectj, but since it is not fully configured it doesn't work (I get a message "Skipping transactional joinpoint [<method name>] because no transaction manager has been configured"
).
My config states <tx:annotation-driven mode="proxy" transaction-manager="transactionManager" />
. Those should all be defaults anyway, but I'm explicitly specifying proxy mode and getting aspectj mode. If I switch to mode aspectj it works, but our production environment doesn't have LTW enabled and I'd prefer to use mode proxy everywhere.
Any idea what's going on? I'm on Spring 3.0.5, and am using the HibernateTransactionManager
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在 spring xml 中定义 transactionManager bean。
You have to define the transactionManager bean in your spring xml.