Reputation: 41
Is there a possibility to configure several webapps in a spring boot with embedded tomcat in a way that:
I saw already:
Using multiple dispatcher servlets / web contexts with spring boot - as far as I understand we actuall have here one webapp with one ServletContext and classloader.
Configure multiple servletcontainers/servlets with spring boot - here different ports are used for webapps and I would prefer to have it on one port
Upvotes: 4
Views: 1506
Reputation: 732
There is a possible solution over on Softare Engineering Exchange: How to wrap multiple Spring Boot applications in a single one
(I'm aware this is an ancient question, but I was looking for an answer to it today.)
Upvotes: 0