Spring-AOP& 多线程
我在多线程处理我的应用程序时遇到问题。 看来 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种可能的解决方案(但可能不是最简单的设置)是使用 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.