How to deploy a Spring Boot project to the Application Server (non-embedded)?
Generate the WAR artifact from the Spring boot project by executing the Maven/Gradle build process.
Deploy the generated WAR into any server that has a web-container. For example, if you are using TOMCAT server, copy the WAR to the webapp folder under the tomcat folder. Tomcat auto-detects any changes under webapp folder and start deploying right away (Hot deployment).