Tag: spring data
Spring Boot + Spring Data JPA + MySQL + Spring RESTful
Spring Data JPA Auditing Example
In this post we’ll see how to configure Spring Data JPA to automatically store auditing information like created by, created date, modified by, modified date for any entity. Spring Data auditing support Spring Data provides support to keep track of who created or changed an entity and the time when…
Spring Data JPA Pagination and Sorting Example
Spring Data JPA @Query Annotation Example
Spring Data JPA @NamedQuery Annotation Example
Spring Data JPA Example
Spring Data Query Methods
In this article we’ll see how query is generated in Spring Data for the repository interface methods and what all options are there in Spring Data for query methods. Table of contents Defining Query Methods Query Lookup Strategies Query creation in Spring Data Declaring Query in Spring Data Defining Query…
Spring Data Tutorial
Spring Data provides abstraction on top of the persistence store you are using (JPA, NoSQL, JDBC etc.) you can significantly reduce the amount of boilerplate code required to implement data access layers for those persistence stores. As a developer you just need to write your repository interfaces, including custom finder…
Spring Boot + Spring Data JPA + MySQL + Spring RESTful
Spring Data JPA Auditing Example
In this post we’ll see how to configure Spring Data JPA to automatically store auditing information like created by, created date, modified by, modified date for any entity. Spring Data auditing support Spring Data provides support to keep track of who created or changed an entity and the time when…
Spring Data JPA Pagination and Sorting Example
Spring Data JPA @Query Annotation Example
Spring Data JPA @NamedQuery Annotation Example
Spring Data JPA Example
Spring Data Query Methods
In this article we’ll see how query is generated in Spring Data for the repository interface methods and what all options are there in Spring Data for query methods. Table of contents Defining Query Methods Query Lookup Strategies Query creation in Spring Data Declaring Query in Spring Data Defining Query…
Spring Data Tutorial

Spring Data provides abstraction on top of the persistence store you are using (JPA, NoSQL, JDBC etc.) you can significantly reduce the amount of boilerplate code required to implement data access layers for those persistence stores. As a developer you just need to write your repository interfaces, including custom finder…