Also update context path in debug runner (from "/" to "/photo")

This commit is contained in:
Erik Forkalsrud 2013-07-03 00:16:59 -07:00
parent d1193ab44a
commit e7a18e77a8

View file

@ -15,7 +15,7 @@ public class Runner {
WebAppContext context = new WebAppContext();
context.setDescriptor("src/main/webapp/WEB-INF/web.xml");
context.setResourceBase("src/main/webapp");
context.setContextPath("/");
context.setContextPath("/photo");
context.setParentLoaderPriority(true);
server.setHandler(context);