mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-23 07:37:55 +00:00
* Removing Legacy Method Separators * Restyling branch `jetty-9.4.x` * Applying changes highlighted by checkstyle * Applying XML restyling * Fixing XML codestyle for IntelliJ * Fixing XML style mistakes * Revert "Applying XML restyling" * Updating checkstyle for XML codestyle * Reformatting pom.xml files * Fixed empty string from line wraps * Update intellij style to not do expression relative formatting. Reformatted code based on that. * Increasing line split on Eclipse IDE Formatter to 512 * Restoring setting on internal default value. + IntelliJ will not export settings on things that set to their internal default values. We want to keep those values as a hedge against future default value changes in future releases of IntelliJ. * Fixing intellij codestyle * do not allow single line simple methods * misc checkstyle fixes * re-exported with correct name and all values Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com> Signed-off-by: Greg Wilkins <gregw@webtide.com>
18 lines
783 B
XML
18 lines
783 B
XML
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
|
|
<Configure class="org.eclipse.jetty.servlet.ServletContextHandler">
|
|
<!-- this configures the servlet session manager -->
|
|
<Set name="SessionHandler">
|
|
<New class="org.eclipse.jetty.server.session.SessionHandler"/>
|
|
</Set>
|
|
<!-- this servlet provides the OSGi HTTP Service once it is initialized -->
|
|
<Call name="addServlet">
|
|
<Arg>org.eclipse.equinox.http.servlet.HttpServiceServlet</Arg>
|
|
<Arg>/*</Arg>
|
|
<Set name="InitOrder">1</Set>
|
|
</Call>
|
|
<!-- custom pluggable error handler -->
|
|
<Set name="ErrorHandler">
|
|
<New class="org.eclipse.jetty.osgi.httpservice.HttpServiceErrorPageErrorHandler"/>
|
|
</Set>
|
|
</Configure>
|