我正在尝试访问注册为的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 还需要什么?