tags:

views:

99

answers:

4

What is the best way to performance monitor spring java application?Jamon,Beet etc

+2  A: 

A spring application is no different in regard to monitoring than any other application. So use whichever tool you are familiar with / you like most.

Bozho
+2  A: 

javamelody: http://code.google.com/p/javamelody/ Easy to integrate but throws exceptions if a security manager is enabled.

Optimus Prime
+1  A: 

You'll have to monitor the performance on the underlying app server you have deployed on. If Tomcat you have Lambda Probe. for weblogic/websphere the consoles provide good in-life monitoring stats

JoseK
A: 

previous replies focused on performance monitoring and tuning.

however, there is another side in monitoring, this one being adressed by SNMP and its Java counterpart : JMX. Like Spring documentation says, JMX integration is quite straightforward.

Riduidel