Is there a Jetty equivalent of tomcat admin/manager webapp

13,264

There is no admin console or admin webapp for Jetty.

But, if you have JMX enabled on the server side, you can use any JMX console to see this information. (such as jconsole from the Java runtime)

You can also have the server dump its configuration state on startup by setting the following System property:

-Djava.dump.start=true

You can even use your JMX console to issue the server configuration dump. To do this, startup jconsole, goto the MBean at the ObjectName of org.eclipse.jetty.server:type=server,id=0 and trigger one of the dump operations.

Share:
13,264
genxgeek
Author by

genxgeek

20+ years of full-stack development and technical project management delivering global software solutions across manufacturing, consumer products and business analytics.

Updated on June 05, 2022

Comments

  • genxgeek
    genxgeek about 2 years

    New to jetty and issue a basic $ mvn:jetty run to start my .war application.

    However, I want to see the actual application name and endpoints exposed.

    I'm used to using tomcat manager to see a list of running applications and endpoints within the browser. Is there a jetty equivalent to localhost:8080/manager?

  • genxgeek
    genxgeek almost 11 years
    Fantastic! Thank you!
  • user6708591
    user6708591 over 3 years
    Having connected to jetty using jconsole, how can I inspect the sessions? There is the org.eclipse.jetty.server.session MBean, but it doesn't include access to the sessions.