I am trying to deploy a war to Tomcat. The name of the war is "Customer.war". After the war gets deployed, I also have to give the name of the war in the URL, for ex: http://localhost:8080/customer/payment/service/add
How can I configure tomcat so that I do not have to give the name of the war 'Customer' in the url. The following is the Url that I want to have:
http://localhost:8080/payment/service/add
How can I force tomcat not to add the war name to the context?