0

我正在尝试访问注册为的JBoss v4.2 MBean

jboss.web:type=Manager,path=/,host=localhost

使用以下代码:

ObjectName name = new ObjectName("jboss.web:type=Manager,path=/,host=localhost");
ManagementFactory.getPlatformMBeanServer().getAttribute(name, "activeSessions");

但是这段代码不断抛出以下异常:

javax.management.InstanceNotFoundException : jboss.web:type=Manager,path=/,host=localhost is not registered.

另一方面,我可以通过 ...//localhost:8080/jmx-console/ 使用 jmx-console 查看和使用此 bean - MBean 可用。

截屏

通过代码访问同一个 MBean 还需要什么?

4

1 回答 1

1

找到了...

ObjectName name = new ObjectName("jboss.web:type=Manager,path=/,host=localhost");
this.sessions = new Long((Integer) MBeanServerLocator.locateJBoss().getAttribute(name, "activeSessions"));

我必须找到合适的 MBeanServer...MBeanServerLocator.locateJBoss()解决它。

于 2013-03-26T08:05:56.193 回答