浏览 7052 次
锁定老帖子 主题:JMX 基础及实例
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-05-07
Manageable resource: 可以被管理的资源可以是应用程序,设备或者存在的能够被java程序所访问或者包装的实体。通过JMX可以管理这些资源,应用程序能够暴露自己的组件,API或者附加的资源,使得JMX能够管理应用程序。 MBean Managed Bean 是一个java类 是符号jmx specification 所规定的命名和继承规范 动态 Mbeans 可在运行时定义属性和操作。这能力允许 Mbean 在装载时动态配置自己或根据它所处环境改变它的属性和操作 下面用一个案例来验证一下(是引用已经验证) 1.建立MBean public interface HelloMBean { //operations public void sayHello(); public int add(int x,int y); //attributes //a read-only attribute called Name of type String public String getName(); // a read-write attribute called CacheSize of type int public int getCacheSize(); public void setCacheSize(int size); } 2.建立实现MBean的类 public class Hello implements HelloMBean{ private final String name = "Reginald"; private int cacheSize = DEFAULT_CACHE_SIZE; private static final int DEFAULT_CACHE_SIZE = 200; public int add(int x, int y) { // TODO 自动生成方法存根 return x+y; } public int getCacheSize() { // TODO 自动生成方法存根 return this.cacheSize; } public String getName() { // TODO 自动生成方法存根 return this.name; } public void sayHello() { // TODO 自动生成方法存根 System.out.println("hello,world"); } public synchronized void setCacheSize(int size) { // TODO 自动生成方法存根 this.cacheSize=size; } } 3.客户端代码 import java.lang.management.*; import javax.management.*; import com.sun.jdmk.*; import com.sun.jdmk.comm.HtmlAdaptorServer; public class Main { /** * @param args * @throws NullPointerException * @throws MalformedObjectNameException * @throws NotCompliantMBeanException * @throws MBeanRegistrationException * @throws InstanceAlreadyExistsException */ public static void main(String[] args) throws MalformedObjectNameException, NullPointerException, InstanceAlreadyExistsException, MBeanRegistrationException, NotCompliantMBeanException { // TODO 自动生成方法存根 MBeanServer mbs = ManagementFactory.getPlatformMBeanServer(); final HtmlAdaptorServer htmlAdaptor = new HtmlAdaptorServer(); final ObjectName htmlAdaptorON = new ObjectName("com.example.mbeans:name=HtmlAdaptor"); mbs.registerMBean(htmlAdaptor, htmlAdaptorON); htmlAdaptor.setPort(9999); System.out.print("Starting the HtmlAdaptor...."); htmlAdaptor.start(); } } 附这里如果没有在classpath中引入jdmkrt.jar 找不到com.sun.jdmk.comm.HtmlAdaptorServer 4.运行上面的java代码 控制台信息:Starting the HtmlAdaptor.... 5.在浏览器中输入 http://localhost:9999/ 这时候你就可以看见一个打开的网页,现在你就可以利用这个网页来进行MBean的管理了! 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |