Spring Tutorial

How to Add Dynamic Pagination in Spring Boot using Spring Data JPA

How to display a large set of the Object or List into pagination form Using Spring boot. This detailed Spring tutorial will help you to implement the Implementation of pagination using Spring Data JPA in the spring boot application. What is Pagination? When we have a large set of data available in the database and …

How to Add Dynamic Pagination in Spring Boot using Spring Data JPA Read More »

Spring Data JPA One to Many Mapping Example

Mapping is one of the important topics when you are establishing a relationship between two or more tables. Here, we will learn how to map one-to-many mapping using spring data JPA in the Spring boot Application. Note: In case you want to know more about Spring Data JPA check this article https://codedec.com/tutorials/spring-data-jpa-in-spring-boot-with-example/ What is a …

Spring Data JPA One to Many Mapping Example Read More »

How to Implement many-to-many mapping in Spring Data JPA

In this article, we will learn How to implement many-to-many mapping in Spring Data JPA. In case you want to know what is Spring Data JPA check this article https://codedec.com/tutorials/spring-data-jpa-in-spring-boot-with-example/ What is many-to-many Mapping in Spring? The many-to-many mapping is done between two entities where both can relate to each other. For example, consider a …

How to Implement many-to-many mapping in Spring Data JPA Read More »

How to Implement one to one mapping in Spring Data JPA

Implement one-to-one mapping in Spring Data JPA. In case you want to know what is Spring Data JPA check this article https://codedec.com/tutorials/spring-data-jpa-in-spring-boot-with-example/ What is One To One Mapping in Spring? The One-to-One mapping means when an instance of one entity is associated with an instance of another entity. For eg, consider a relationship between employee …

How to Implement one to one mapping in Spring Data JPA Read More »

How to perform CRUD operation in Spring boot using RestAPI

Create, Read, Update(CRUD) operation in Soring Boot using RestAPI. As We know Spring boot and RestAPI is highly used and demanding these days. In this tutorial, we will see simple examples to perform CRUD operations in spring boot using REST API.  Some of the basic RestAPI methods that will use in these examples, GET, POST, …

How to perform CRUD operation in Spring boot using RestAPI Read More »