0

我想用我的 POJO 类访问 JBoss 服务器的 mbean。我在这些站点上了解了 mbean 。但我并不满意。有没有什么方法可以使用 java 类访问 JBoss 服务器的 mbean 以及如何应用这些 mbean?

4

1 回答 1

1

要获得对本地 JBoss MBean 服务器的引用,最简单的方法是使用 MBeanServerLocator。检查此链接:https ://community.jboss.org/wiki/HowCanIGetAReferenceToTheMBeanServer

如果你想访问远程 JBoss MBean 服务器,那么你可以使用:

  1. JMXConnectionFactory http://docs.oracle.com/javase/1.5.0/docs/api/javax/management/remote/JMXConnectorFactory.html
  2. RMI 适配器http://docs.jboss.org/jbossas/docs/Server_Configuration_Guide/4/html/Connecting_to_the_JMX_Server-Connecting_to_JMX_Using_RMI.html

如果你用谷歌搜索,你可以找到每种方法的大量示例。

于 2012-08-24T15:14:49.797 回答