IBM Websphere:队列管理器处理
我已在 WebSphere 上部署了我的应用程序,它已启动并正在运行,与该应用程序关联的队列也是如此。
当我将消息放入队列时,我在应用程序服务器的 SystemOut.log 文件中没有看到任何处理。该队列应该处理消息,然后将其转发到另一个队列。
请告诉我哪个日志文件可以检查我的应用程序正在完成的消息的处理情况。
I have deployed my application on WebSphere and it is up and running and so are the queues associated with the application.
When I put messages on the queue I do not see any processing in SystemOut.log file of the app server. This queue is supposed to process the message and then forward it to another queue.
Please tell me which log file to check the processing of the message being done my application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个非常简单的验证是抑制消息的消耗。
然后您生成的消息将保留在队列中。
A really simple verification would be to inhibit the consumption of the messages.
Then your produced messages will stay in the queue.
您使用的是 SIB 还是 WebSphere MQ?
据我所知,SIB 本身不会记录任何有关消息消费的信息。但是,您可以使用 Commons-Logging、Log4J 等日志记录框架来添加一些日志记录详细信息。
Are you using the SIB or WebSphere MQ ?
As far as I know, the SIB does not log anything about message consumption by itself. However, you could use a logging framework such as Commons-Logging, Log4J, ... to add some logging details.