By jettro, on June 20th, 2010

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
By jettro, on June 19th, 2010
jQuery(document).ready(function($) { window.setTimeout(‘loadFBShareMe_1062()’,5000); }); function loadFBShareMe_1062(){ jQuery(document).ready(function($) { $(‘.dd-fbshareme-1062′).remove();$(‘.DD_FBSHAREME_AJAX_1062′).attr(‘width’,’53′);$(‘.DD_FBSHAREME_AJAX_1062′).attr(‘height’,’69′);$(‘.DD_FBSHAREME_AJAX_1062′).attr(‘src’,'http://widgets.fbshare.me/files/fbshare.php?url=http://www.gridshore.nl/2010/06/19/upgraded-wordpress-and-the-atahualpa-theme/&size=large’); }); }
I have just upgraded the wordpress software to version 3. It all seemed to work fine. However I noticed errors in the archive pages. Therefore I wanted to upgrade to the latest and greatest atahualpa theme that I use for my blog. I should [...]
By jettro, on June 2nd, 2010
Lately I have been doing a lot with JMX. I use it more and more to check what my application is doing. I use it to monitor tomcat, the cache, queue’s and other libraries and components. Now I wanted to use jmx to monitor my own application. Using the standard JMX stuff coming with the JDK is not hard, but since I use a lot of spring, I wanted to know more about spring support.
The most important question in the end will be, is it easier to use spring with jmx than the standard jmx stuff from the jdk.
Read on to find out about jmx and my answer to the question which is easier, the spring way or the standard jmx way.
Continue reading Using JMX within a spring application
Popular