Spring-AOP& 多线程

发布于 2024-07-23 02:38:33 字数 146 浏览 2 评论 0原文

我在多线程处理我的应用程序时遇到问题。 看来 AOP 无法跨越多个线程,即 我无法执行单个事务中的所有线程。 每个线程都会在处理时更新数据库。 我正在使用fixedThreadPool 和ExecutorCompletionService。 这是弹簧的问题吗?

i am having trouble multithreading my app.
It seems AOP is unable to span over multiple threads i.e.
i am unable to execute all the threads within a single transaction.
Every thread updates the database on processing.
I am using fixedThreadPool and ExecutorCompletionService. Is this a problem with spring?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

骄傲 2024-07-30 02:38:33

一种可能的解决方案(但可能不是最简单的设置)是使用 JMS。 您可以发送并行处理的多条消息,并且它们可以共享相同的事务上下文。

One possible solution, but maybe it isn't the easiest setup, is to use JMS. You can send off multiple messages which are processed in parallel, and they can share the same transactional context.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文