Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Jetty/Howto/Configure Jetty

< Jetty‎ | Howto
Revision as of 05:54, 18 September 2009 by Gregw.webtide.com (Talk | contribs)



Introduction

Jetty configuration is a combination of configuration of the HTTP server, the web container and the web application.

Jetty itself is a collection of Plain Old Java Objects (POJOs) and can be configured in several ways:

Web applications (aka WARs, webapps and contexts) can be configured either with standard based web.xml, annotations or via calling the jetty API directly (as above).

Back to the top