* Jetty: Don't extract wars

This commit is contained in:
zzz
2012-03-17 21:52:17 +00:00
parent e2a39a3eb5
commit 02bde80725
3 changed files with 6 additions and 1 deletions

View File

@ -415,6 +415,7 @@ public class RouterConsoleRunner {
(_listenPort != null ? _listenPort : _sslListenPort));
tmpdir.mkdir();
rootWebApp.setTempDirectory(tmpdir);
rootWebApp.setExtractWAR(false);
rootWebApp.setSessionHandler(new SessionHandler());
rootServletHandler = new ServletHandler();
rootWebApp.setServletHandler(rootServletHandler);

View File

@ -101,6 +101,8 @@ public class WebAppStarter {
WebAppContext wac = new WebAppContext(warPath, "/"+ appName);
tmpdir.mkdir();
wac.setTempDirectory(tmpdir);
// all the JSPs are precompiled, no need to extract
wac.setExtractWAR(false);
// this does the passwords...
RouterConsoleRunner.initialize(wac);