One common question that I have already heard dozens of times is, how do I break down my monolith into microservices? or, how do I migrate from a monolith approach to microservices?
Well, that's what this recipe is all about.
One common question that I have already heard dozens of times is, how do I break down my monolith into microservices? or, how do I migrate from a monolith approach to microservices?
Well, that's what this recipe is all about.
For both monolith and microservice projects, we will use the same dependency:
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>8.0</version>
<scope>provided</scope>
</dependency>