JDK 1.5
From jManageTo enable your J2SE 5.0 application for remote management, add the following system properties to your application: com.sun.management.jmxremote.port=9999 For example: java -Dcom.sun.management.jmxremote.port=9999 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false mypackage.MyClass Add this application in jManage as a JSR 160 application with the following URL: service:jmx:rmi:///jndi/rmi://localhost:9999/jmxrmi
http://java.sun.com/j2se/1.5.0/docs/guide/management/agent.html |
