I am using Maven to build our application.
So the war name will be MyTest-1.00-SNAPSHOT1.0
.If I deploy the same in Tomcat I have use the URL as
//localhost:8080/MyTest-1.00-SNAPSHOT1.0
but I need to set the context path MyTest eventhough deployed WAR name as MyTest-1.00-SNAPSHOT1.0
.
I need the URL will be
//localhost:8080/MyTest
always even though the WAR name has version or etc.
Suggest me to achieve this scenario.
The best way is to directly generate the war file with name
MyTest.war
. To do so you can usefinalName
in thebuild
section:EDIT: (to add more information resulting from the comments)
AFAIK there isn't anything that we can include in the war that automatically sets a context that is not related to the file name.
from: Apache Tomcat 7 Configuration Reference - The Context Container # Naming
Also says:
But has the disadvantage of having to update the configuration for each new version.
As you use Maven, maybe an option is the Apache Tomcat Maven Plugin to deploy the war. It allows to configure a differente context path (I've never used this plugin):
from: Tomcat Maven Plugin Usage