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/SetContextPath

< Jetty‎ | Howto
Revision as of 00:11, 24 March 2011 by Gregw.webtide.com (Talk | contribs)



Introduction

The context path is the prefix of a URL path that is used to select the webapplication to which an incoming request is routed. Typically a URL in a java servlet server is of the format http://hostname.com/contextPath/servletPath/pathInfo, where each of the path elements may be zero or more / separated elements. If there is no context path, then the context is referred to as the root context.

How the context path is set depends on how the webapplication (or ContextHandler) is deployed:

Embedded Deployment

If Jetty is run from code as an embedded server then setting the context path is a matter of calling the setContextPath method on the ContextHandler instance (or WebAppContext instance).

Context Depoyment

If the webapplication/context is deployed from the context deployer/provider then the contextPath may be set within the context.xml file.

 <Configure class="org.eclipse.jetty.webapp.WebAppContext">
   <Set name="contextPath">/foo</Set>
   ...
 </Configure>

Webapp Deployment

If the webapplication is deployed from the webapp deployer/provider then by default the name of the WAR file is used to form the context path. So if the file is called foobar.war, then the context path will be /foobar. There is a special case for webapps called root.war which are mapped to the root / context.

The context path may also be set for webapps by embedding a WEB-INF/jetty-web.xml file in the WAR. This is not a preferred method.

Back to the top