I followed the official spring tutorial "Converting a Spring Boot JAR Application to a WAR using Maven" link.
The generated war file is deployed on tomcat and is accessible at:
a)http://localhost:8080/${AppName}/
http://localhost:8080/gs-convert-jar-to-war-maven-0.1.0/ in case of the tutorial.
Which configs do I need to change to make my application directly available at
http://localhost:8080/ (without the appName)
while running my war file on tomcat?
Thanks,
Ron