Spring集成中如何实现事务性MessageStore策略?
我的发布者组件将消息发布到 jdbc 消息存储支持的队列通道。我的要求是,如果发布者线程遇到异常,则不应将消息传递到队列。 我想利用 weblogic JTA 事务管理器。
请指教。
My publisher component publishes messages to a jdbc message store backed queue channel. My requirement is that the messages should not be delivered to the queue if the publisher thread encounters an exception.
I would like to make use of weblogic JTA transaction manager.
Pls advise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
消息发布尊重事务(如果调用者线程中存在事务)。
无需特殊设置。
Messages publishing honors the transactions, if any in the caller thread.
There is no special setting required.