How to deploy a Spring Boot WAR to Wildfly, JBoss or Tomcat
Deploying a Spring Boot WAR to Wildfly, JBoss or Tomcat This is a short guide on how to deploy a Spring boot war packaged application to Wildfly and Tomcat. As you know, Wildfly is the name of the community version of JBoss EAP, so this configuration should work for JBoss EAP as well. Spring Boot guides encourage you to deploy your application with the embedded server when you package the jar file. The default server depends now on which web technology you use. If you include the dependency spring-boot-starter-web, Spring Boot includes Tomcat by default. For WebFlux (spring-boot-starter-webflux), Reactor Netty is the default embedded server.Read More →
2018-08-06