如何通过 MXBean 获取应用程序端口
给定一个应用程序: http://localhost:8080/myapp/
是否可以通过 MBean/ 查询 JVM当前应用程序代码中的 MXBean 在哪个端口接受请求?还有应用程序上下文(myapp)?
given a application: http://localhost:8080/myapp/
is it possible to enquire JVM through MBean/MXBean in which port the current application code is accepting requests? and also the appcontext (myapp)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。我回答它:)
由于应用程序服务器 MXBEans 依赖于平台 - 每个供应商都会导出他们想要的 AS 功能 - 我的解决方案是通过 servlet 请求以传统方式捕获此信息。
就是这样。
Ok. I answer it :)
Since Application Server MXBEans are plataform dependent - each vendor export the AS features they want - my solution was to capture this information in the traditional way, through servlet request.
that's it.