JMSTemplate.execute 的目的是什么
任何人都可以解释 JMSTemplate.execute 方法的真正目的。它可以接受会话回调。 Spring文档没有提及任何有关它的细节。
Anyone can explain the real purpose of JMSTemplate.execute method. It can accept a session callback.
The Spring document does not say any details about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用它来获取原始 JMS Session 并对这个会话对象执行一些操作。例如,您可以使用它来获取 QueueBrowser 查看队列的内容而不实际消耗消息。
You can use it to get hold of a raw JMS Session and do something with this session object. For eg, you can use it to get a QueueBrowser to peek at the contents of the queue without actually consuming the messages.
Spring 文档对其 JMS 功能非常具体,并以 JmsTemplate.execute()。与 JmsTemplate.execute() 和 SessionCallback 应该给出你很清楚它的作用。
The Spring documentation is pretty specific about its JMS capabilities, and it ends with a brief description of JmsTemplate.execute(). That coupled with the javadoc for JmsTemplate.execute() and the SessionCallback should give you a pretty clear idea of what it does.