您的位置:首页 > 编程语言 > Java开发

Spring Boot with Spring Data JPA (1) - Concept

2016-10-18 22:26 465 查看

What's Spring Data JPA?

According to Pivotal, Spring Data JPA, part of the larger Spring Data family, makes it easy to easily implement JPA based repositories. This module deals with enhanced support for JPA based data access layers. It makes it easier to build Spring-powered applications that use data access technologies.

Features

Sophisticated support to build repositories based on Spring and JPA

Support for Querydsl predicates and thus type-safe JPA queries

Transparent auditing of domain class

Pagination support, dynamic query execution, ability to integrate custom data access code

Validation of
@Query
annotated queries at bootstrap time

Support for XML based entity mapping

JavaConfig based repository configuration by introducing
@EnableJpaRepositories


What I am going to explain in this series?

I will build some demonstrations based on spring-data-starter-data-jpa, to show how to adopt these features.

Dive into the source code to study how it works.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: