Spring Boot – Deploy WAR file to separate Tomcat in maven web application.
Spring Boot – Deploy WAR file to separate Tomcat in maven web application. This post show how to deploy a spring boot war file to the separate tomcat container in maven. Step 1 : extends SpringBootServletInitializer subclass and override its configure method. Typically, update your application’s main class to extend SpringBootServletInitializer. For example: Before extend package net.mzouabi.ng2.server; import...