RE: how to reconfigure my app so that it runs without "context" in the uri path

2017-08-29 Thread Svein-Erik Løken
Command line in IntelliJ, maven: jetty:run -Duser.timezone=UTC -Dtapestry.execution-mode=development -Dtapestry-web-server-port= Maybe it's easier to start with this project: https://github.com/sveine/tapestry-multi-module-demo.

Re: how to reconfigure my app so that it runs without "context" in the uri path

2017-08-28 Thread Joshua Richardson
Hi Guys, thank you for both answers, which were useful. In case anyone else runs into similar issue and finds this thread in the archives, I'll note that I ended up needing to replace the maven-jetty-plugin in the pom.xml with the jetty-maven-plugin (much newer version), configured as shown by

RE: how to reconfigure my app so that it runs without "context" in the uri path

2017-08-28 Thread Svein-Erik Løken
: Svein-Erik Løken Subject: Re: how to reconfigure my app so that it runs without "context" in the uri path Hi Joshua, It depends only on the container you are using to deploy the Tapestry application. This is not different from any other Java application. If you use Tomcat,

Re: how to reconfigure my app so that it runs without "context" in the uri path

2017-08-27 Thread Mats Andersson
Hi Joshua, It depends only on the container you are using to deploy the Tapestry application. This is not different from any other Java application. If you use Tomcat, see: https://stackoverflow.com/questions/7276989/how-to-set-the-context-path-of-a-web-application-in-tomcat-7-0 Best regards

how to reconfigure my app so that it runs without "context" in the uri path

2017-08-27 Thread Joshua Richardson
Hi, I'm looking to build an app using Tapestry. I'm able to run the Quickstart 5.4 app and then I see my app by going to localhost:8080/site/, because I configured my project with the name, "site". Since I do not intend to ever run any other apps on this same server/port, I would like to avoi