Spring JMX框架中有效bean的含义以及为自动检测MBeanExporter创建有效bean的方法

时间:2018-12-08 19:57:31

标签: java spring jmx spring-jmx

我是spring的新手,目前正在学习spring提供的jmx支持。我知道MBeanExporter是spring的JMX框架的核心类之一。所以我想尝试一下。 (我正在按照here提供的教程进行操作)

我正在尝试使用autodetect的{​​{1}}属性。但是我真的不知道我是否理解正确。

此处链接中的文档说

  

如果启用了自动检测,那么有效的JMX Bean将在spring之前自动注册。

现在我不明白什么是有效的jmx bean。我知道每个jmx-bean应该有一个object name,并且应该实现一个接口,该接口的名称应该是后缀为“ MBean”的类的名称。我还有其他限制吗?

当我满足这两个限制时,MBeanExporter的自动检测功能会很好。但是我觉得使用spring必须有其他一些我不知道的方法来构造有效的jmx-bean。你能指出我这一点吗?

以下是代码:

application-context.xml

MBeanExporter

PersonMBean.java

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

    <bean id="mBenaServer" class="org.springframework.jmx.support.MBeanServerFactoryBean">
        <property name="locateExistingServerIfPossible" value="true"/>
    </bean>

    <bean id="exporter" class="org.springframework.jmx.export.MBeanExporter" lazy-init="false">
        <property name="server" ref="mBenaServer"/>
        <!--<property name="beans">-->
            <!--<map>-->
                <!--<entry key="com.mybean:name=testBean1" value-ref="personBean"/>-->
            <!--</map>-->
        <!--</property>-->
        <property name="autodetect" value="true"/>
    </bean>

    <bean id="personBean" class="com.jmx.trial.Person" lazy-init="true">
        <property name="name" value="Lavish"/>
        <property name="age" value="25"/>
    </bean>

</beans>

Person.java

package com.jmx.trial;

public interface PersonMBean {
    void setName(String name);
    void setAge(int age);
    String getName();
    int getAge();
}

Main.java

package com.jmx.trial;

import org.springframework.jmx.export.naming.SelfNaming;

import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;

public class Person implements PersonMBean, SelfNaming {
    private String name;
    private int age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public ObjectName getObjectName() throws MalformedObjectNameException {
        return new ObjectName("custom.bean:name=testbean");
    }
}

我正在寻找是否有可能以上述代码之外的任何方式创建有效的jmx-bean。

我不知道它是否与package com.jmx.trial; import org.apache.log4j.Logger; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Main { private static Logger logger = Logger.getLogger(Main.class); public static void main(String[] args) throws Exception { ApplicationContext context = new ClassPathXmlApplicationContext("context.xml"); Person p = (Person) context.getBean("personBean"); System.out.println(p.getName()); System.out.println(p.getAge()); logger.debug("Started, now waiting"); Thread.sleep(Long.MAX_VALUE); } } 有关。如果是,那么我想获得对此详细说明的指导。我试图在spring / docs上阅读它,但对我来说并不顺利。

1 个答案:

答案 0 :(得分:1)

阅读the spring documentation

Spring在传统JMX之上添加了一层。

对于传统的JMX,MBean是一个Foo的bean,具有公开的属性和操作FooMBean的接口。

autDetect在此上下文中仅意味着在应用程序上下文中声明的任何bean上自动检测此类接口并进行注册。

Spring允许任何 Bean作为MBean公开(不需要接口)。相反,您选择several mechanisms to select which attributes/operations are exposed中的一个,但是通常必须告诉出口商您要公开哪些bean。您可能永远都不想公开应用程序上下文中的每个bean。

带注释的模型可能是最简单的模型(@ManagedResource@ManagedAttribute@ManagedOperation)。

框架提供的AutodetectCapableMBeanInfoAssembler实现检测到这些注释。

  

为进一步简化配置,Spring包括AutodetectCapableMBeanInfoAssembler接口,该接口扩展了MBeanInfoAssembler接口,以增加对MBean资源自动检测的支持。如果使用AutodetectCapableMBeanInfoAssembler实例配置MBeanExporter,则可以在包含Bean的情况下对其进行“投票”以暴露给JMX。

     

AutodetectCapableMBeanInfo接口的唯一实现是MetadataMBeanInfoAssembler,该接口投票以包括任何带有ManagedResource属性标记的bean。 ...

但是,如果您想要更多的自动检测功能,则可以编写自己的内容。