1

只是在本地 tomcat 服务器上的 eclipse 中尝试了一个简单的 Spring JMX 应用程序,但似乎无法注册 mbean,因此它们可以在 jconsole 中查看,在 eclipse 上下文中:component-scan 确实可以拾取我创建的 bean但是这些没有注册。当以编程方式注册 mbean 时,它可以工作。

这是我的配置 xml 文件。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<bean id="mbeanServer" class="java.lang.management.ManagementFactory"
lazy-init="false" factory-method="getPlatformMBeanServer">
</bean>

<context:component-scan base-package="com.jmx.beans" />
<context:mbean-export server="mbeanServer" />

</beans>

我正在尝试使用注释注册的简单 bean

package com.jmx.beans;

import org.springframework.jmx.export.annotation.ManagedAttribute;
import org.springframework.jmx.export.annotation.ManagedResource;
import org.springframework.stereotype.Component;

@Component
@ManagedResource(objectName="bean:name=Hello")
public class Hello{

String message =  null;

@ManagedAttribute(description="get the message")
public String getMessage(){

    return this.message;
}

@ManagedAttribute(description="set the message")
public void setMessage(String Message){

    this.message = Message;

}
}

我还设置了tomcat服务器参数如下

-Dcom.sun.management.jmxremote 
-Dcom.sun.management.jmxremote.port=9990
-Dcom.sun.management.jmxremote.ssl=false 
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.hostname="localhost"

对此的任何帮助将不胜感激,谢谢

4

2 回答 2

4

你为什么编辑你的帖子以删除<context:component-scan/>?这是找到您的@Component.

我刚刚测试过,对我来说一切都很好......

@Component
@ManagedResource
public class Foo {

    @ManagedAttribute
    public int getIt() {
        return 42;
    }
}

<context:mbean-server/>

<context:component-scan base-package="foo" />

<context:mbean-export/>

我用你的 MBean 服务器风格进行了尝试,它也很有效。

于 2013-03-14T15:50:57.907 回答
1

老问题但仍然有效。您可以使用以下 vm 参数来解决 Mbean 未出现问题。

-Dspring.jmx.enabled=true
于 2021-08-17T08:53:16.593 回答