IntelliJ Web Application Context

In my IntelliJ web application, I set the application context for myapp, as shown below.

enter image description here

When I set the application context, it has no effect. I was expecting the application to be deployed to myapp or at least the generated context.xml file to set my application context to myapp. Any thoughts on why this is not working (this is due to the fact that this is an exploded war)?

+8
intellij-idea tomcat deployment
source share
1 answer

Overriding CATALINA_BASE when you run the Tomcat script can break the IDEA deployment because it works by delivering the custom location CATALINA_BASE where the modified configuration is located so that Tomcat downloads artifacts directly from the location specified as the output directory of the artifact.

See related question:

  • How Tomcat Handles IntelliJ IDEA 10.5
+7
source share

All Articles