API Gateway provides a unified interface for a set of microservices so that clients no need to know about all the details …
Service Discovery is a database used to keep track of the available instance of each microservices in an application. The service registry …
FeignClient is a way of communication between two services or microservices. We can implement easily FeignClient. FeignClient is mostly used to consume …
Spring Boot actuator will provides some features such as monitoring, metrics, health check, mapping and beans etc. Spring Boot provides a spring …
The scheduler works fine with single instance/node. But when we scale up our application more than one node. In this case, we …
Hibernate mapping refers mapping between entity classes and relationship between tables in the ORM. Following are the 4 types of mapping. An …
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 & paste given …
Step 1: Add given dependency in pom.xml <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> …
STEP 1: Create a Spring Boot project from Spring Initializr and downloaded the project by clicking on the GENERATE CTRL + ↵ button or …