快速业务通道

扩展Spring的JMX支持 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21
artService()   {    System.out.println("ExampleService: Start Service Called");   }   public void stopService()   {    System.out.println("ExampleService: Stop Service Called");   } }

扩展Spring的JMX支持(7)

时间:2011-01-16 IBM

对管理员友好的消息

这个扩展的描述符可以几乎直接关联属性和操作。描述符方法优于内省式方法的主要一点是可以提供更特定的消息。通知描述符的配置选项有赖于类型(XML)属性的命名规范。实际的名字是任意的,但是代码会被类型中的 set.name、before.name 和 after.name 样式触发。在这种情况下,我将 set 通知与 propertyValue (JMX)属性关联,将 before 与 after 通知与 startService() 与 stopService() 方法关联。同样,这些扩展使我可以很好利用描述性的消息。

在清单 5 中,可以看到定义了一个属性和两个方法。通知描述符定义了方法的之前和之后事件以及一个属性设置通知:

清单 5. ExampleService.mbean.xml

<?xml version="1.0"?> <mbean name="ExampleService" description="Example Service"   type="com.claudeduguay.jmx.demo.server.ExampleService">   <attribute name="propertyValue"    description="Property Value Access" type="java.lang.String"    readable="true" writable="true" />   <operation name="stopService"    description="Stop Example Service" />   <operation name="startService"    description="Start Example Service" />   <notification name="PropertyValueSet"    types="example.service.set.propertyValue"    description="PropertyValue was set" />   <notification name="BeforeStartService"    types="example.service.before.startService"    description="Example Service is Starting" />   <notification name="AfterStartService"    types="example.service.after.startService"    description="Example Service is Started" />   <notification name="BeforeStopService"    types="example.service.before.stopService"    description="Example Service is Stopping" />   <notification name="AfterStopService"    types="example.service.after.stopService"    description="Example Service is Stopped" />   </mbean>

配置服务器

要在客户机/服务器环境中运行这个例子,需要配置和启动一个 MBeanServer 实例。为此,我使用 Java 5.0 MBeanServer 实例,它保证我可以使用 JVM 中提供的管理扩展,同时管理自己的代码。如果愿意,还可以运行 MBeanServer 的多个实例,您愿意的话也可以自己试一试作为练习。

就像 Java 5.0 一样,Spring 框架使您可以配置自己的 MBeanServer 实例。我选择使用 Java 5.0,因为它支持 JSR-160 连接器,我的客户机代码会需要它。

清单 6. SpringJmxServer

package com.claudeduguay.jmx.demo.server; import org.springframework.context.*; import org.springframework.context.support.*; import mx4j.tools.adaptor.http.*; /* * To use the SpringJmxServer, use the following command line * arguments to ac

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号