- 01:整体认识JPA
- 02:Jpa基础查询方法JpaRepository详解
- 03:定义查询方法(Defining Query Methods
- 04:注解式查询方法
- 05:@Entity实例里面常用注解详解
- 06:JpaRepository扩展之QueryByExampleExecutor
- 07:JpaRepository扩展之JpaSpecificationExecutor
- 08 : JpaRepository扩展之自定义Repositor
- 09:Auditing与@version
- 10:对MvcWeb的支持分页和排序的支持
- 11:Spring Data Jpa的配置之SpringBoot2.0加载详解
- 12:DataSource的配置与事务详解、多数据源
- 13:Spring Data Jpa之QueryDSL支持
- 01: Redis 介绍
- 02: Jedis 客户端用法
- 03: Spring Data Redis 的配置方法
- 04: Spring Cache 用法
- 05: Cache 和 Spring Data Redis 结合
- 06: 实际工作中 Redis 常用的一些工具和命令
- 07: 分布式和高并发环境下在使用 Redis 的时候,我们需要考虑的东西
- 08: Redis 服务端和客户端的原理
《Spring Data JPA入门 实战与进阶》现货正版包邮 Spring Data JPA:入门、实战与进阶
源码太分散不利于大家查找,所以就给大家放在一起了,可以根据需要自取。
- 1.5.9对应的文件夹 是《Spring Data JPA入门到精通》书上对应的源码
- 2.0.0对应的文件夹是《Spring Data JPA实战》书上对应的源码
- Java并发编程入门到精通是《Java并发编程入门到精通》书上对应的源码
- 2.3 对应的是《Spring Data JPA:入门、实战与进阶》书上的源码,预计2021-10 JD能上架出售
- 2.3/jpa_base_all_quick_start_rest 经典JPA脚手架项目,快速入门体验JPA能做到什么效果
- 提issue或者mr都可以 https://github.com/zhangzhenhuajack/spring-data-jpa-guide
- 同时注意issue和wiki的更新 https://github.com/zhangzhenhuajack/spring-data-jpa-guide
1. SpringDataJPA:https://docs.spring.io/spring-data/jpa/docs/current/reference/html/
3. Hibernate文档:https://docs.jboss.org/hibernate/orm/5.2/userguide/html_single/Hibernate_User_Guide.htm
4. JPA详细协议:https://github.com/eclipse-ee4j/jpa-api
https://github.com/eugenp/tutorials/tree/master/persistence-modules/spring-data-jpa
https://github.com/eugenp/tutorials/tree/master/persistence-modules/spring-data-jpa-2
https://github.com/eugenp/tutorials/tree/master/persistence-modules/spring-data-jpa-3
https://github.com/eugenp/tutorials/tree/master/persistence-modules/spring-data-jpa-4
https://dzone.com/articles/50-best-performance-practices-for-hibernate-5-amp
https://dzone.com/articles/best-performance-practices-for-hibernate-5-and-spr
https://vladmihalcea.com/how-to-implement-equals-and-hashcode-using-the-jpa-entity-identifier/
- https://github.com/eclipse-ee4j/jpa-api
- https://github.com/eugenp/tutorials/tree/master/persistence-modules/spring-data-jpa
- https://docs.spring.io/spring-data/data-jpa/docs/
- https://docs.jboss.org/hibernate/orm/5.2/userguide/html_single/Hibernate_User_Guide.html#architecture-overview
- https://www.docs4dev.com/docs/zh/hibernate-orm/5.4/reference/hibernate_user_guide.html
- https://github.com/zhangzhenhuajack/spring-data-jpa-guide/blob/master/doc/High-Performance.Java.Persistence.pdf
- https://github.com/zhangzhenhuajack/spring-data-jpa-guide/blob/master/doc/JavaPersistence2.2.0.pdf
- https://github.com/zhangzhenhuajack/spring-data-jpa-guide/blob/master/doc/SpringDataJPA%E5%85%A8%E9%9D%A2%E8%AE%A4%E8%AF%86.key
- Spring Data JPA利用@EntityGraph解决N+1的SQL查询问题: @OnetoOne @OneToMany #36
- 禁用spring.jpa.show-sql=true ;原因:#39
- spring data jpa在保存数据的时候,会有缓存问题吗 #38
- 如果在Dirty判断的时候,当前session中缓存对比数据库来讲已经不是最新的。那么JPA会如何进行处理?#34
- 解决save的时候不产生select语句,直接insert,提高批量操作是提升insert的效率 #31
- 返回Dto的projection 利用JPAL返回Dto的返回结果 #57
- JPA实体 某些 字段 映射mysql 字段 JSON类型 查询和保存使用实例 #58
- @Query实现动态查询的方法 #60