...
Property Replacements: the ConfigurationManager
sample context.xml
| Code Block |
|---|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
<Configure class="org.mortbay.jetty.webapp.WebAppContext">
<Set name="contextPath"><Property name="contextPathfoo"/></Set>
</Configure>
|
The webapp configured (above) will be deployed on the contextPath: /bar*
sample deployment.properties ($jetty.home/etc/deployment.properties)
ContextDeployer configuration
| Code Block |
|---|
|
<Set name="configurationManager">
<New class="org.mortbay.jetty.deployer.FileConfigurationManager">
<Set name="file"><SystemProperty name="jetty.home" default="."/>/etc/deployment.properties</Set>
</New>
</Set>
|