I am looking for:
- What JMX is.
- Where I can find some good JMX Tutorials.
- What JMX can provide to me as a Java EE programmer.
- Anything else I should be aware of.
|
3
|
|
|
|
|
|
In a nutshell JMX allows you to remotely invoke methods or view exposed data from the inside of a running JVM. A lot of applications use JMX to sort of attach a remote dashboard to their running JVMs in order to provide remote management. For example, if you had an app server running on a machine, with JMX it would be possible to remotely view the exposed information about that server. It is also possible to code your own JMX MBeans which can expose any variables or methods inside your application. The exposed variables can they be "polled" remotely to test for certain conditions you would like to know about. Another useful thing about JMX is that you can remotely change variables on the fly, for instance if you have some sort of pool set up that has a maximum total amount, this maximum amount can be changed remotely without having to restart or change any configuration files on your application server. jconsole is provided by Sun with Java to be able to easily view your MBeans remotely without having to code your own client solution. You could also consume the MBeans with a custom solution which can give you excellent flexibility. Also, there are already some monitoring softwares that come with JMX MBean monitoring built in. Zenoss and Applications Manager 8 do this, to name a couple. Addition: There is already a lot of software that takes advantage of JMX. Tomcat exposes information that is accessable via jconsole and so does JBoss Application Server. |
|||
|
|
|
|
These are the two I read when first reading up on JMX. Sun Tutorial: http://java.sun.com/docs/books/tutorial/jmx/index.html Spring 2.5/JMX: http://static.springframework.org/spring/docs/2.5.x/reference/jmx.html |
||
|
|
|
|
Here's a good overview: http://en.wikipedia.org/wiki/Java_Management_Extensions |
||
|
|
|
|
JMX is a way to view and manipulate the runtime state of your application. It's somewhat similar in concept to SNMP, if that helps. IMO, it's indispensable for monitoring and understanding server-type applications that might not have any other user interface besides writing to a log file. The basic approach is to create an interface for the things you want to monitor, then have a class implement the interface, then register an instance of that class with the "MBeanServer" (which actually makes the stuff defined in the interface available to JMX monitoring apps like jconsole). Here's a trivial -- but working -- example: (I'm assuming Java 5 or better) TestServerMBean.java
TestServer.java:
Compile and run TestServer.class as usual, fire up Obviously this is a ridiculous "server", but hopefully having a simple working example will help illustrate the overall concept: being able to peek into and manipulate a running app. There are a lot of additional features and different types of MBeans, but just the vanilla JMX shown above goes a long way, IMO. |
||
|
|
|
|
Maybe JSR 262 is also worth to be mentioned here. "JSR 262 defines a connector for the JMX Remote API that uses Web Services to make JMX instrumentation available remotely. Clients do not have to be Java applications, but can be." It is very likely that JSR 262 will be part of the next Java version (Java 7). There is a java.net project for a JMX WS connector which depends on WiseMan project. Wiseman is an Open Source Java implementation of WS-Management standard. |
||
|
|