N Application Management Console for Jetty

jetty

I've fairly recently started working with Java (most of my recent experience is in .NET). As part of that effort, I have been doing some comparison between Jetty and Tomcat.

One feature of Tomcat that I think would be useful in our environment is the built in management console that allows an administrator to deploy/undeploy/restart/etc the various applications deployed to the server.

Is there a similar capability available for Jetty? If not, is there a preferred way to manage application servers?

Thanks for your input.

Best Answer

Any JMX console should work, including JConsole and JVisualVM.

Related Topic