`

spring通过annotation注册MBean到JMX

阅读更多

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 @ManagedResource Class 类
将方法标识为JMX操作 ManagedOperation @ManagedOperation Method方法
将getter或者setter标识为部分JMX属性 ManagedAttribute @ManagedAttribute Method (only getters and setters) 方法(仅getters和setters)
定义操作参数说明 ManagedOperationParameter @ManagedOperationParameter@ManagedOperationParameters Method 方法

 

 

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

 

@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的属性

查询bean的属性

 

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

查看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配置

    <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配置

<?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

 

 

分享到:
评论

相关推荐

    Spring_Annotation_AOP

    在本资料"Spring_Annotation_AOP"中,我们将深入探讨Spring框架如何利用注解实现AOP,以及其背后的原理和实践应用。 面向切面编程(AOP)是一种编程范式,旨在提高代码的可维护性和可重用性,通过将关注点分离,...

    spring 的Annotation方式

    ### Spring的Annotation方式详解 #### 引言 随着Spring框架的发展,其依赖注入(DI)机制也经历了从XML配置向注解驱动的重大转变。自Spring 3.0版本起,框架引入了一系列注解来简化依赖配置,使得开发人员能够在不...

    Spring MVC Annotation验证的方法

    Spring MVC Annotation验证方法 Spring MVC 框架提供了多种验证方法,其中一种常用的方式是使用Annotation验证。本文将详细介绍 Spring MVC Annotation验证的方法,包括使用 Spring MVC 自带的 Annotation 验证和...

    spring的Annotation注解.

    Spring框架通过引入Annotation,极大地简化了Java开发中的依赖注入(Dependency Injection, DI)和面向切面编程(AOP)的过程。Annotation是一种元数据,允许开发者在代码中嵌入额外的信息,Spring则能够读取这些信息来...

    jmx 实例 rmi mbean

    3. **导出MBean**: 使用`MBeanServer`的`registerMBean()`方法将MBean注册到服务器,并获取其ObjectName。ObjectName是MBean的唯一标识。 4. **启用RMI**: 配置`MBeanServer`启用RMI,这通常涉及到设置`...

    Spring的Annotation配置相关讲义

    在Spring框架中,Annotation配置是一种简洁且强大的方式来管理Bean的定义和依赖注入,它消除了传统的XML配置文件,使得代码更加简洁、易读。在Spring 3.0及以上版本中,Annotation配置得到了广泛的应用。 首先,...

    Spring Annotation简介一

    Spring Annotation通过在类、方法或字段上添加特定的注解,可以实现自动配置,从而实现依赖注入和组件扫描等功能。 1. **依赖注入(Dependency Injection, DI)**:Spring Annotation中最常用的注解之一是`@...

    Spring+mybatis annotation形式

    同时,我们还需要在Spring配置中启用MyBatis的支持,通过`@MapperScan`注解扫描Mapper接口,并通过`@Resource`或`@Autowired`注解将Mapper注入到Service层。 Service层是我们处理业务逻辑的地方,通常我们会定义...

    Spring annotation

    Spring框架是Java开发中不可或缺的一部分,它通过提供丰富的注解简化了依赖注入、配置管理和AOP(面向切面编程)等任务。本文将深入探讨Spring注解及其在实际开发中的应用。 1. **依赖注入(Dependency Injection, ...

    Spring IOC Annotation 注入 学习实例

    Annotation注入是Spring IOC的一种实现方式,它利用Java注解替代XML配置来管理Bean的依赖关系,使得代码更加简洁、可读性更强。 在Spring框架中,我们主要关注以下几个关键的注解: 1. `@Component`:这是一个基础...

    spring的annotation-driven配置事务管理器详解 (多数据源配置

    Spring 框架提供了强大的事务管理机制,通过使用 Annotation-Driven 配置,可以方便地管理事务。在多数据源配置中,spring 的 Annotation-Driven 配置事务管理器可以帮助我们轻松地管理多个数据源的事务。 在 ...

    spring annotation注解

    Spring 框架中的注解是用于在 Java 类中添加元数据的,通过这些元数据,Spring 框架可以在运行时提供更多的功能。 Spring 框架提供了多种类型的注解,例如 @Autowired、@Resource、@Component 等。 1. 使用 Spring ...

    struts2 hibernate3 spring2.5 annotation 整合

    文件Spring_3300_Registration_11可能是一个示例项目,包含了上述整合的实例,包括Action、Service、DAO、配置文件等,开发者可以通过学习和运行这个项目来理解和实践Struts2、Hibernate3、Spring2.5的整合以及注解...

    详解Spring基于Annotation的依赖注入实现

    技术分享:详解Spring基于Annotation的依赖注入实现

    利用 spring annotation AOP 反射 记录日志

    在Spring框架中,AOP主要通过代理模式实现,可以分为基于XML配置和基于注解两种方式。本例中,我们关注的是注解式AOP,它更加简洁且易于使用。 在Spring中,我们可以通过定义一个带有`@Aspect`注解的类来创建一个切...

    SpringMVC Spring MyBatis 框架整合 Annotation Maven Project

    SpringMVC通过DispatcherServlet接收HTTP请求,将请求分发到相应的处理器(Controller),控制器处理后返回Model对象,最后由视图解析Model并展示给用户。 Spring框架的核心在于依赖注入(Dependency Injection,DI...

    Spring 常用 Transaction Annotation

    最后,结合`Book1.xlsx`这个文件名,虽然它看起来像一个Excel文件,但在这里没有提供具体的文件内容,所以无法直接关联到Spring事务注解的知识点。通常,这样的文件可能包含有关Spring事务管理的示例数据、测试用例...

    Spring - Annotation 自动匹配注入IOC

    在Spring框架中,注解(Annotation)自动匹配注入IoC(Inversion of Control,控制反转)是一种关键特性,它极大地简化了Java应用的配置管理。本文将深入探讨这一主题,帮助开发者更好地理解和利用这一功能。 首先...

Global site tag (gtag.js) - Google Analytics