Spring Boot on Elastic Beanstalk worker tier
I am trying to deploy a spring boot app into one EB worker tier but seems that EB it is not ready to manage this kind of project. Have I to mandatory generate a .war from my spring boot app? Thanks! I have found the problem. EB expects a .war file and Spring Boot app usually is launche by a embedded Tomcat or Jetty. I have found the solution in this guide: http://spring.io/guides/gs/convert-jar-to-war/ Summing up: Add tomcat dependency with provided scope in pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided<