├── .DS_Store ├── Appendix ├── A.md ├── B.md ├── C.md ├── D.md ├── E.md └── F.md ├── JPA Repositories.md ├── README.md ├── Reference Documentation ├── 4. JPA Repositories │ ├── 4.1. Introduction.md │ ├── 4.10. JPA Auditing.md │ ├── 4.2. Persisting entities.md │ ├── 4.3. Query methods.md │ ├── 4.4. Stored procedures.md │ ├── 4.5. Specifications.md │ ├── 4.6. Query by Example.md │ ├── 4.7. Transactionality.md │ ├── 4.8. Locking.md │ └── 4.9. Auditing.md └── 5. Miscellaneous │ ├── 5.1. Using JpaContext in custom implementations.md │ ├── 5.2. Merging persistence units.md │ └── 5.3. CDI integration.md ├── SUMMARY.md ├── Working-with-Spring-Data-Repositories ├── 3.5 creating-repository-instances.md ├── 3.6 custom-implementations-for-Spring-Data-repositories.md ├── 3.7. Publishing events from aggregate roots.md ├── 3.8. Spring Data extensions.md ├── README.md ├── core-concepts.md ├── creating-repository-instances.md ├── custom-implementations-for-Spring-Data-repositories.md ├── defining-query-methods.md ├── defining-repository-interfaces.md ├── query-methods.md └── spring-data-repositories.md ├── cover.jpg ├── cover_small.jpg ├── dependencies.md ├── introduce ├── about.md └── intro.md ├── new-noteworthy.md ├── preface.md └── 翻译格式规范示例.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/.DS_Store -------------------------------------------------------------------------------- /Appendix/A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Appendix/A.md -------------------------------------------------------------------------------- /Appendix/B.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Appendix/B.md -------------------------------------------------------------------------------- /Appendix/C.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Appendix/C.md -------------------------------------------------------------------------------- /Appendix/D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Appendix/D.md -------------------------------------------------------------------------------- /Appendix/E.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Appendix/E.md -------------------------------------------------------------------------------- /Appendix/F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Appendix/F.md -------------------------------------------------------------------------------- /JPA Repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/JPA Repositories.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/README.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.1. Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.1. Introduction.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.10. JPA Auditing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.10. JPA Auditing.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.2. Persisting entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.2. Persisting entities.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.3. Query methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.3. Query methods.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.4. Stored procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.4. Stored procedures.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.5. Specifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.5. Specifications.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.6. Query by Example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.6. Query by Example.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.7. Transactionality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.7. Transactionality.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.8. Locking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.8. Locking.md -------------------------------------------------------------------------------- /Reference Documentation/4. JPA Repositories/4.9. Auditing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/4. JPA Repositories/4.9. Auditing.md -------------------------------------------------------------------------------- /Reference Documentation/5. Miscellaneous/5.1. Using JpaContext in custom implementations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/5. Miscellaneous/5.1. Using JpaContext in custom implementations.md -------------------------------------------------------------------------------- /Reference Documentation/5. Miscellaneous/5.2. Merging persistence units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/5. Miscellaneous/5.2. Merging persistence units.md -------------------------------------------------------------------------------- /Reference Documentation/5. Miscellaneous/5.3. CDI integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Reference Documentation/5. Miscellaneous/5.3. CDI integration.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/3.5 creating-repository-instances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/3.5 creating-repository-instances.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/3.6 custom-implementations-for-Spring-Data-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/3.6 custom-implementations-for-Spring-Data-repositories.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/3.7. Publishing events from aggregate roots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/3.7. Publishing events from aggregate roots.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/3.8. Spring Data extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/3.8. Spring Data extensions.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/core-concepts.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/creating-repository-instances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/creating-repository-instances.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/custom-implementations-for-Spring-Data-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/custom-implementations-for-Spring-Data-repositories.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/defining-query-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/defining-query-methods.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/defining-repository-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/defining-repository-interfaces.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/query-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/query-methods.md -------------------------------------------------------------------------------- /Working-with-Spring-Data-Repositories/spring-data-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/Working-with-Spring-Data-Repositories/spring-data-repositories.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/cover_small.jpg -------------------------------------------------------------------------------- /dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/dependencies.md -------------------------------------------------------------------------------- /introduce/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/introduce/about.md -------------------------------------------------------------------------------- /introduce/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/introduce/intro.md -------------------------------------------------------------------------------- /new-noteworthy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/new-noteworthy.md -------------------------------------------------------------------------------- /preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/preface.md -------------------------------------------------------------------------------- /翻译格式规范示例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ityouknow/spring-data-jpa-reference-documentation/HEAD/翻译格式规范示例.md --------------------------------------------------------------------------------