Jetty6 now has support for XBean. This allows you to use a neat compact XML format to customize Jetty within an XBean configuration file along with configuring other Geronimo projects like ActiveMQ or ServiceMix.
e.g. the following shows how to configure Jetty inside an XBean configuration file.
<beans>
<jetty xmlns="http://mortbay.com/schemas/jetty/1.0">
<connectors>
<nioConnector port="8181" />
</connectors>
<handlers>
<webAppContext contextPath="/" resourceBase="/tmp/webapp" parentLoaderPriority="false" />
</handlers>
</jetty>
</beans>
|
There is also an auto-generated XSD and HTML reference for the XML configuration language
More information on configuring services using XBean XML to provide Custom XML