有没有什么好的监控EJB容器的工具?
我想知道创建了多少个特定 EJB bean 的实例。以及它们当前的状态(即哪个是钝化的还是激活的)。到目前为止,我用来监视 bean 生命周期的唯一方法是调试模式(如构造函数调用、@PostContruct 方法...)。
I'd like to know how many instances of a certain EJB bean are created. And also their current state, (i.e. which one is passivated or activated). So far, the only way I use to monitor beans life cycle is the debugging mode (like constructor calls, @PostContruct methods...).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题的答案可能取决于您运行的应用程序服务器,但如果您运行的服务器完全兼容 Java EE,它们应该根据 JSR 77 通过 JMX 作为托管对象。我建议您进一步查看应用程序服务器的文档。
The answer to this question may depend on which application server you are running, but if the server you are running is fully Java EE compatible, they should provide some EJB statistics according to JSR 77 as managed objects via JMX. I'd suggest reviewing your application server's documentation further as well.