spring通过annotation注解注册MBean到JMX实现监控java运行状态

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

代码下载地址:http://www.zuidaima.com/share/1828116267568128.htm

原文:spring通过annotation注解注册MBean到JMX实现监控java运行状态

1、前言

JMX管理及使用日趋成熟。spring对bean的管理功能也很强大,通过annotation把某些方法暴露成MBean,然后通过JMX远程管理,在某些场景下会带来意想不到的效果。

本文只介绍两个内容:spring通过annotation暴露MBean、相关的xml配置。

2、spring通过annotation暴露MBean

      2.1   涉及到三个重要的annotation:@ManagedResource @ManagedAttribute 和 @ManagedOperation。

用途 Commons Attributes属性 JDK 5.0注解 属性/注解类型

将类的所有实例标识为JMX受控资源ManagedResource@ManagedResourceClass 类
将方法标识为JMX操作ManagedOperation@ManagedOperationMethod方法
将getter或者setter标识为部分JMX属性ManagedAttribute@ManagedAttributeMethod (only getters and setters) 方法(仅getters和setters)
定义操作参数说明ManagedOperationParameter@ManagedOperationParameter@ManagedOperationParametersMethod 方法

    2.2   看了上面官方解释,应该有个大概的了解,下面再举个例子。

package com.zuidaima.jmx;@ManagedResource (objectName= "bean:name=lionbuleTest" , description= "My Managed Bean"public   class  AnnotationTestMBean{      private String name;      private int age;            @ManagedAttribute(description="The Name Attribute")      public void setName(String name) {          this.name = name;      }        @ManagedAttribute()      public String getName() {          return name;      }        public int getAge() {          return age;      }      public void setAge(int age) {          this.age = age;      }            @ManagedOperation(description="Add two numbers")      @ManagedOperationParameters({      @ManagedOperationParameter(name = "x", description = "The first number"),      @ManagedOperationParameter(name = "y", description = "The second number")})      public int add_1(int x, int y) {          return x + y;      }        @ManagedOperation      public int add_2(int x, int y){          return x + y;      }          public void dontExposeMe() {          throw new RuntimeException();      }  }  

 

   2.3  Jconsole的管理界面截图:

 

图1、查看已暴露MBean的属性

 

图2、查看已暴露MBean的方法

 

   2.4   解释说明:

         1、@ManagedResource @ManagedAttribute 和 @ManagedOperation 还有许多参数,具体使用请参考spring官方手册。( spring手册[2.5.3] ---- 20.3.4. 源代码级的元数据类型)

         2、@ManagedOperationParameters 是对@ManagedOperation的补充。具体看代码样例中的add1方法上的注解,然后再看图2(查看已暴露MBean的方法)的add1方法和add2的区别。添加参数说明的add1方法会显示出参数名,而add2方法则是默认的参数名p1/p2。

         3、没有添加@ManagedOperation和@ManagedAttribute的方法,在图2中就没有看到,说明添加了注解的方法暴露MBean是可用的。

         4、@ManagedOperation和@ManagedAttribute的区别,请查看2.1的详解。

3、xml配置

    方式一、通用spring bean配置

  1. <bean   id = "jmxAttributeSource"     
  2.          class="org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource"/>    
  3.    <!-- 使用注解元数据创建管理接口 -->    
  4.    <bean id="assembler"    
  5.          class="org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler">    
  6.        <property name="attributeSource" ref="jmxAttributeSource"/>    
  7.    </bean>    
  8.    <!-- 从注解中得到ObjectName  -->    
  9.    <bean id="namingStrategy"    
  10.          class="org.springframework.jmx.export.naming.MetadataNamingStrategy">    
  11.        <property name="attributeSource" ref="jmxAttributeSource"/>    
  12.    </bean>    
  13.    <bean id="exporter" class="org.springframework.jmx.export.MBeanExporter">    
  14.        <property name="assembler" ref="assembler"/>    
  15.        <property name="namingStrategy" ref="namingStrategy"/>    
  16.        <property name="autodetect" value="true"/>    
  17.    </bean>    
  18.     
  19. <!-- 配置服务器端连接器RMI -->     
  20. <bean   class = "org.springframework.remoting.rmi.RmiRegistryFactoryBean" >             
  21.     <property name="port" value="2088"/>    
  22. </bean >     
  23. <bean   id = "serverConnector"     
  24.       class="org.springframework.jmx.support.ConnectorServerFactoryBean">    
  25.   <property name="objectName" value="connector:name=rmi"/>    
  26.          <!-- 客户端链接地址配置 -->    
  27.   <property name="serviceUrl"    
  28.             value="service:jmx:rmi://localhost/jndi/rmi://localhost:2088/myconnector"/>    
  29. </bean >     
  30.     
  31. <!-- 自定义的mbean -->     
  32.    <bean id="annotationTestMBean" class="com.lionbule.biz.test.AnnotationTestMBean">    
  33.        <property name="name" value="TEST"/>    
  34.        <property name="age" value="100"/>    
  35.    </bean>    
<bean   id = "jmxAttributeSource"            class="org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource"/>     <!-- 使用注解元数据创建管理接口 -->     <bean id="assembler"           class="org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler">         <property name="attributeSource" ref="jmxAttributeSource"/>     </bean>     <!-- 从注解中得到ObjectName  -->     <bean id="namingStrategy"           class="org.springframework.jmx.export.naming.MetadataNamingStrategy">         <property name="attributeSource" ref="jmxAttributeSource"/>     </bean>     <bean id="exporter" class="org.springframework.jmx.export.MBeanExporter">         <property name="assembler" ref="assembler"/>         <property name="namingStrategy" ref="namingStrategy"/>         <property name="autodetect" value="true"/>     </bean>    <!-- 配置服务器端连接器RMI -->   <bean   class = "org.springframework.remoting.rmi.RmiRegistryFactoryBean" >               <property name="port" value="2088"/>  </bean >   <bean   id = "serverConnector"         class="org.springframework.jmx.support.ConnectorServerFactoryBean">    <property name="objectName" value="connector:name=rmi"/>           <!-- 客户端链接地址配置 -->    <property name="serviceUrl"              value="service:jmx:rmi://localhost/jndi/rmi://localhost:2088/myconnector"/>  </bean >     <!-- 自定义的mbean -->      <bean id="annotationTestMBean" class="com.lionbule.biz.test.AnnotationTestMBean">         <property name="name" value="TEST"/>         <property name="age" value="100"/>     </bean>  

    配置中,已经加了相应的注释。还不是很清楚,可以查询spring官方手册。

    方式二、简化spring-context配置

  1. <? xml   version = "1.0"   encoding = "UTF-8" ?>     
  2. <beans   xmlns = "http://www.springframework.org/schema/beans"     
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    
  4.     xmlns:context="http://www.springframework.org/schema/context"    
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans    
  6.                         http://www.springframework.org/schema/beans/spring-beans.xsd    
  7.                         http://www.springframework.org/schema/context    
  8.                         http://www.springframework.org/schema/context/spring-context.xsd"    
  9.     default-autowire="byName">    
  10.     
  11.     <context:mbean-export default-domain="ShowCase" registration="replaceExisting" />    
  12.     <!-- 自定义的mbean -->    
  13.     <bean id="annotationTestMBean" class="com.lionbule.biz.test.AnnotationTestMBean">    
  14.         <property name="name" value="TEST"/>    
  15.         <property name="age" value="100"/>    
  16.     </bean>    
  17. </beans >     
<? 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:context="http://www.springframework.org/schema/context"      xsi:schemaLocation="http://www.springframework.org/schema/beans                          http://www.springframework.org/schema/beans/spring-beans.xsd                          http://www.springframework.org/schema/context                          http://www.springframework.org/schema/context/spring-context.xsd"      default-autowire="byName">        <context:mbean-export default-domain="ShowCase" registration="replaceExisting" />      <!-- 自定义的mbean -->      <bean id="annotationTestMBean" class="com.lionbule.biz.test.AnnotationTestMBean">          <property name="name" value="TEST"/>          <property name="age" value="100"/>      </bean>  </beans >   

    注意:方式二对ClassName和beanName有约束,请以‘MBean’结尾。 

4、客户端工具连接

    常用的客户端工具:Jconsole、jvisualvm、jmanager等。

    连接方式有多种,但本案只介绍了RMI连接管理,所以本案的链接地址为:

  service:jmx:rmi://localhost/jndi/rmi://localhost:2088/myconnector 

参考资料:

1、spring官方手册

     http://static.springsource.org/spring/docs/2.5.x/reference/jmx.html#jmx-interface

2.  http://wiki.springside.org.cn/display/SpringSide3/JMX

           

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow
这里写图片描述
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值