
In my previous post, “Using JMX within a spring application“, I talked about monitoring your application with jmx. I discussed exposing beans with spring. At one of my current projects I am having problems exposing jmx through the default jmxrmi protocol. In his whitepaper about jmx, Allard mentiones another protocol, jmxmp. Spring has support for this remoting protocol as well. Therefore I wanted to try this out.
Another thing I wanted to experiment with is creating a groovy client. The technique with interfaces and proxies with spring as described in my previous post is a lot of work when you are interested in a little bit of data. Therefore I wanted to see if using groovy is easier.
This blog post discusses these two topics with respect to JMX.
Continue reading Exposing jmx through jmxmp and reading the jmx data with groovy



