I have jetty running with some context.xml:
<?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.eclipse.jetty.webapp.WebAppContext">
<Set name="war">path/to/webapp</Set>
<Set name="contextPath">/</Set>
</Configure>
(The path is not default.) The webapp is rebuilt upon every change, but still I need to fake some write access to the context.xml to make jetty reload the webapp.
Is there a way to tell jetty to reload the webapp upon change?