Hi,
I would like to monitor web applications running under tomcat using JMX.
I don't want to just use the built in JMX implementation of Tomcat, I want to implement an mbean for the actual Web Application so I can get information on application-specific settings and monitor it.
The problem with web applications and online monitoring is that web applications are not always active but are "awaken" to handle requests by the server so monitoring them is not just plugging in with JMX as I would for a normal running process.
How do you make Tomcat run applications in the background (Like a Singleton) so I can connect to it at all time?
Is there a way to do this that is common and I am not aware of?
Thanks!