zoukankan      html  css  js  c++  java
  • Spring Boot with Spring Data JPA (1)

    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.
  • 相关阅读:
    [BZOJ] IOI2015 Boxes纪念品盒
    [BZOJ] 聚会
    [BZOJ] 地精部落
    [BZOJ] 最长距离
    正则
    cookie实例 记住用户名密码
    cookie封装
    碎片整合 例子
    闭包 tab切换 实例
    闭包
  • 原文地址:https://www.cnblogs.com/leolztang/p/5971431.html
Copyright © 2011-2022 走看看