Jetty - Conf

Java Conceptuel Diagram

About

The job of configuring Jetty is building:

Management

Set

As Jetty components are simply Plain Old Java Objects (POJOs), you can accomplish this assembly and configuration of components by a variety of techniques:

  • In code, see the examples in the Jetty Source XRef.
  • Using Jetty XML, a dependency injection style in XML format.
  • With your dependency injection framework of choice, Spring or XBean.
  • Using Jetty WebApp and Context Deployers.

List

List the resolved configuration that will be used to start Jetty.

java -jar start.jar --list-config

The –list-config command displays a trove of information about the server including the Java and Jetty environments, the configuration order, any JVM arguments or System Properties set, general server properties, a full listing of the Jetty server class path, and active Jetty XML files.





Discover More
Java Conceptuel Diagram
Java - Jetty (Web Server)

is a java web server Jetty provides: an HTTP server (to send back static content), HTTP client (to make http request), and javax.servlet container (to send back...
Java Conceptuel Diagram
Jetty - Base

jetty.base is the jetty configuration directory. This is where the etc, webapps and start files will be looked for. If not found in jetty.base, they are looked for in jetty.home. A Jetty base directory...



Share this page:
Follow us:
Task Runner