How to create Health Check API using Actuator
Spring Boot actuator will provides some features such as monitoring, metrics, health check, mapping and beans etc. Spring Boot provides…
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 &…
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>…