Debian – Spring Boot App not available on its path when deployed on standalone Tomcat
I have a Spring Boot webapp developed and tested with the Netbeans internal Tomcat server. I have setup the Application as a SpringBootServletInitializer public class ServletInitializer extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(Testspringboot2Application.class); } } @SpringBootApplication…