How to add ShedLock in Spring Boot
The scheduler works fine with single instance/node. But when we scale up our application more than one node. In this…
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>…
STEP 1: Create a Spring Boot project from Spring Initializr and downloaded the project by clicking on the GENERATE CTRL +…