Spring JMS消费者拉动
我需要实现一个拉动消费者。 我看到的大多数例子都是生产者向消费者推送消息;假设消费者总是在线。 我希望生产者将消息推送到队列,而消费者则按照自己的计划消费这些消息。 我的消费者有一个非工作时间日历,无法在非工作时间处理请求。
我将如何在春季配置它。
蒂亚·
拉古
I need to implemt a pulling consumer.
Most of the examples I see are the producer pushing a message to the consumer; Assuming consumer is always up.
I want the producer to push messages to a queue and the consumer to consume those messages on its own schedule.
My consumer has a off hours calender and cannot process requests during off hours.
How would I configure that in spring.
TIA
Raghu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用消息驱动的 POJO 和 JMS。
Use message driven POJOs and JMS.
onMessage是服务器推送,消息一送到客户端就被处理。我希望客户端决定何时提取消息并处理它。
The onMessage is a server push, The message is processed as soon as it is delivered to the client. I want the client to decide when it wants to pull the message and process it.