I have springboot application than will be deployed to the tomcat. I have class:
public class SpringBootApp extends SpringBootServletInitializer {
....
}
In the application.properties I have:
server.contextPath=/
But when app going deployed to the tomcat, it not unavailable with url like: http://193.123.33.33:8080/ Buy available with url http://193.123.33.33:8080/appname
How I will setting up springboot for root url mapping in the tomcat? Thanks!