我们有弹簧集成应用程序,我们通过使用以下配置启用了JMX但不知何故,当我连接到Weblogic时,我没有看到jConX中的那些JMX bean或任何spring bean。我们做错了什么?我确实看到其他特定于weblogic的jmx bean在jconsole中可见,但春天没有。
<context:mbean-export registration="ignoreExisting"/>
<context:mbean-server/>
<int-jmx:mbean-export default-domain="testApp"/>
答案 0 :(得分:0)
我认为你的问题在这里:
* <p>By default, {@code MBeanServerFactoryBean} will always create
* a new {@code MBeanServer} even if one is already running. To have
* the {@code MBeanServerFactoryBean} attempt to locate a running
* {@code MBeanServer} first, set the value of the
* "locateExistingServerIfPossible" property to "true".
因此,应用程序上下文随newMBeanServer
一起提供,而不是环境中已存在的那个。
<强>更新强>
但命名空间支持并不提供该选项。因此,请考虑使用泛型bean定义:
<bean id="mbeanServer" class="org.springframework.jmx.support.MBeanServerFactoryBean"
p:locateExistingServerIfPossible="true" />