How to Communicate between two services using Feign Client
FeignClient is a way of communication between two services or microservices. We can implement easily FeignClient. FeignClient is mostly used…
FeignClient is a way of communication between two services or microservices. We can implement easily FeignClient. FeignClient is mostly used…
Spring Boot actuator will provides some features such as monitoring, metrics, health check, mapping and beans etc. Spring Boot provides…
The scheduler works fine with single instance/node. But when we scale up our application more than one node. In this…
Hibernate mapping refers mapping between entity classes and relationship between tables in the ORM. Following are the 4 types of…
Step 1: Add given dependency in pom.xml file. <dependency> <groupId>org.modelmapper</groupId> <artifactId>modelmapper</artifactId> </dependency> Step 2: Go to your main file and copy &…