Reputation: 633
I converted a Spring MVC web service to Spring Boot (using spring-boot-starter-web). The service is packaged as a .war and has been deployed to a Tomcat 8 server, but I forgot to explicitly add the spring-boot-starter-tomcat dependency and mark it provided as per Spring's traditional deployment instructions.
The service appears to be behaving correctly, i.e. all endpoints return or post the correct data, and I don't see any errors in the server or app logs.
We have a monthly release cycle, so I'm currently planning to correct this next month. However, I want to understand any potential impact in case I'm missing something and should consider fixing it off-cycle. From my research, it seems most issues from this would occur at deployment/startup time, but the service is deploying and starting up successfully. Could there potentially be 2 instances of the service running now, i.e. embedded Tomcat and the actual Tomcat server? Any other potential bugs or ticking time bombs?
Upvotes: 0
Views: 208
Reputation: 61
Upvotes: 1