Posts related to tag: Spring Data


Simplify Data Access with Spring’s @Repository Annotation

In modern web development, efficient data access is crucial to building robust and scalable applications. The Spring Framework, with its […] Continue reading »

Spring Data MongoRepository Interface Methods Example

In this article, we’ll explore the methods available in the MongoRepository interface provided by Spring Data in the package org.springframework.data.mongodb.repository. […] Continue reading »

Spring Data JPA Auditing using AuditorAware

In this article, we’ll explore the Spring Data JPA Auditing using AuditorAware. In every business application, we need to audit […] Continue reading »

Spring Data JPA @Query Annotation Example

On this page, we’ll learn to write custom queries using Spring Data JPA @Query annotation. @Query annotation supports both JPQL […] Continue reading »

Spring Data JPA Derived Query Methods Example

In this tutorial, we’ll learn about Spring Data JPA derived query methods example. Spring Data JPA gives the flexibility to […] Continue reading »

Spring Boot Dynamic DataSource Routing using AbstractRoutingDataSource

This page will walk through Dynamic DataSource Routing using AbstractRoutingDataSource and Spring Data JPA in Spring Boot. AbstractRoutingDataSource is an […] Continue reading »

Spring Boot Multiple Data Sources Example with Spring JPA

This guide walks you through how to configure multiple data sources in the Spring Boot application using Spring Data JPA. […] Continue reading »

Spring Boot- Pagination and Sorting using Spring Data JPA

This page will walk through Spring Boot Pagination and Sorting using Spring Data JPA + MySQL database. Pagination will improve […] Continue reading »

Spring Data Derived findBy Query Methods Example

In this tutorial, we’ll explore Spring Data derived findBy query methods example. Apart from the basic CRUD methods in the […] Continue reading »

Spring Data CrudRepository Interface Example

This article will focus on the implementation of Spring Data CrudRepository interface into a Spring Boot project. CrudRepository is used […] Continue reading »