Reputation: 11
I have around 10 microservices which are spring boot applications, how to run those microservices in one jvm in a single port.
Upvotes: 0
Views: 689
Reputation: 36103
You can change the packaging to war and then run the wars in an app server like Tomcat.
Please find the official documentation here: https://docs.spring.io/spring-boot/docs/current/reference/html/howto.html#howto.traditional-deployment
Upvotes: 1