I need to convert an old web application containing multiple tomcat contexts into a Spring Boot application that utilizes Embedded Tomcat.
The following is the server.xml file defining the contexts:
Is there a way in which I can configure a Spring Boot application in order for it to contain all of these contexts?
I've seen that it's possible to configure a context by overriding methods of the TomcatServletWebServerFactory, is there any method of that class I can override to define more than one context?