...
e.g. the following shows how to configure Jetty inside an XBean configuration file.
| Code Block |
|---|
<beans<beans> <jetty xmlns="http://mortbay.com/schemas/jetty/1.0"> <jetty> <connectors> <nioConnector port="8181" /> </connectors> <handlers> <webAppContext contextPath="/" resourceBase="/tmp/webapp" parentLoaderPriority="false" /> </handlers> </jetty> </beans> |
...