spring tx:在 tomcat 中启用加载时编织时,注释驱动忽略模式

发布于 2024-10-01 09:44:08 字数 471 浏览 2 评论 0原文

我正在尝试使用注释配置事务。当我在启用了加载时编织的环境中运行时(例如,带有编织类加载器的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ζ澈沫 2024-10-08 09:44:08

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

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

You have to define the transactionManager bean in your spring xml.

<bean id="transactionManager"
  class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  <property name="dataSource" ref="dataSource" />
 </bean>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文