├── .github └── workflows │ └── jekyll.yml ├── .gitignore ├── README.md ├── SUMMARY.md ├── add_custom_all.md ├── add_custom_single.md ├── annotation_configuration.md ├── applying_query_hints.md ├── auditing.md ├── basics.md ├── book.json ├── cdi_integration.md ├── config_fetch.md ├── core_concepts.md ├── cover.jpg ├── creating_repository_instances.md ├── custom_impl_spring_data.md ├── define_query_methods.md ├── define_repository_interface.md ├── entity_jpamappingfile.md ├── fine_tuning_define.md ├── introduction.md ├── java_config.md ├── jpa_auditing.md ├── jpa_general_auditing_config.md ├── jpa_modify_query.md ├── jpa_query_creation.md ├── jpa_query_lookup.md ├── jpa_query_methods.md ├── jpa_repository.md ├── legacy_web_support.md ├── limiting_query.md ├── locking.md ├── merging_persistence_units.md ├── namespace_reference.md ├── persisting_entity.md ├── populators_namespace_reference.md ├── preface.md ├── project_metadata.md ├── property_expressions.md ├── query_creation.md ├── query_lookup.md ├── query_methods.md ├── question_ask.md ├── reference.md ├── repo_query_keywords.md ├── repository_populators.md ├── save_entity.md ├── special_parameter_handling.md ├── specifications.md ├── spring_data_extensions.md ├── spring_namespace.md ├── standalone_usage.md ├── stored_procedures.md ├── streaming_query_results.md ├── streaming_queryresults.md ├── styles └── ebook.css ├── transaction_query_methods.md ├── transactionality.md ├── using_jpa_namedquery.md ├── using_named_parameters.md ├── using_query_tag.md ├── using_spel_expressions.md ├── web_support.md ├── workingwith_spring_data_repositories.md └── xml_configuration.md /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/.github/workflows/jekyll.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /add_custom_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/add_custom_all.md -------------------------------------------------------------------------------- /add_custom_single.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/add_custom_single.md -------------------------------------------------------------------------------- /annotation_configuration.md: -------------------------------------------------------------------------------- 1 | # 基于配置的声明 2 | 3 | -------------------------------------------------------------------------------- /applying_query_hints.md: -------------------------------------------------------------------------------- 1 | # 应用查询提示 2 | 3 | -------------------------------------------------------------------------------- /auditing.md: -------------------------------------------------------------------------------- 1 | # 审查 2 | 3 | -------------------------------------------------------------------------------- /basics.md: -------------------------------------------------------------------------------- 1 | # 基本审查 2 | 3 | -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/book.json -------------------------------------------------------------------------------- /cdi_integration.md: -------------------------------------------------------------------------------- 1 | # 创建Repository实例集成 2 | 3 | -------------------------------------------------------------------------------- /config_fetch.md: -------------------------------------------------------------------------------- 1 | # 配置Fetch和LoadGraphs 2 | 3 | -------------------------------------------------------------------------------- /core_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/core_concepts.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/cover.jpg -------------------------------------------------------------------------------- /creating_repository_instances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/creating_repository_instances.md -------------------------------------------------------------------------------- /custom_impl_spring_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/custom_impl_spring_data.md -------------------------------------------------------------------------------- /define_query_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/define_query_methods.md -------------------------------------------------------------------------------- /define_repository_interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/define_repository_interface.md -------------------------------------------------------------------------------- /entity_jpamappingfile.md: -------------------------------------------------------------------------------- 1 | # 路径扫描@Entity类和JPA映射文件 2 | 3 | -------------------------------------------------------------------------------- /fine_tuning_define.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/fine_tuning_define.md -------------------------------------------------------------------------------- /introduction.md: -------------------------------------------------------------------------------- 1 | # 介绍 2 | 3 | -------------------------------------------------------------------------------- /java_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/java_config.md -------------------------------------------------------------------------------- /jpa_auditing.md: -------------------------------------------------------------------------------- 1 | # JPA审查 2 | 3 | -------------------------------------------------------------------------------- /jpa_general_auditing_config.md: -------------------------------------------------------------------------------- 1 | # 审查配置 2 | 3 | -------------------------------------------------------------------------------- /jpa_modify_query.md: -------------------------------------------------------------------------------- 1 | # 修改查询 2 | 3 | -------------------------------------------------------------------------------- /jpa_query_creation.md: -------------------------------------------------------------------------------- 1 | # 创建查询 2 | 3 | -------------------------------------------------------------------------------- /jpa_query_lookup.md: -------------------------------------------------------------------------------- 1 | # 查询查找策略 2 | 3 | -------------------------------------------------------------------------------- /jpa_query_methods.md: -------------------------------------------------------------------------------- 1 | # 查询方法 2 | 3 | -------------------------------------------------------------------------------- /jpa_repository.md: -------------------------------------------------------------------------------- 1 | # JPA Repositories 2 | 3 | -------------------------------------------------------------------------------- /legacy_web_support.md: -------------------------------------------------------------------------------- 1 | # 保留的网络支持 2 | 3 | -------------------------------------------------------------------------------- /limiting_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/limiting_query.md -------------------------------------------------------------------------------- /locking.md: -------------------------------------------------------------------------------- 1 | # 锁定 2 | 3 | -------------------------------------------------------------------------------- /merging_persistence_units.md: -------------------------------------------------------------------------------- 1 | # 持久化单元的合并 2 | 3 | -------------------------------------------------------------------------------- /namespace_reference.md: -------------------------------------------------------------------------------- 1 | # 附录A:命名空间参考 2 | 3 | -------------------------------------------------------------------------------- /persisting_entity.md: -------------------------------------------------------------------------------- 1 | # 持久化实体 2 | 3 | -------------------------------------------------------------------------------- /populators_namespace_reference.md: -------------------------------------------------------------------------------- 1 | # 附录B:填充命名空间参考 2 | 3 | -------------------------------------------------------------------------------- /preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/preface.md -------------------------------------------------------------------------------- /project_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/project_metadata.md -------------------------------------------------------------------------------- /property_expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/property_expressions.md -------------------------------------------------------------------------------- /query_creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/query_creation.md -------------------------------------------------------------------------------- /query_lookup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/query_lookup.md -------------------------------------------------------------------------------- /query_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/query_methods.md -------------------------------------------------------------------------------- /question_ask.md: -------------------------------------------------------------------------------- 1 | # 附录D:常见问答 2 | 3 | -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- 1 | # 参考文档 -------------------------------------------------------------------------------- /repo_query_keywords.md: -------------------------------------------------------------------------------- 1 | # 附录C:Repository查询关键字 2 | 3 | -------------------------------------------------------------------------------- /repository_populators.md: -------------------------------------------------------------------------------- 1 | # Repository填充器 2 | 3 | -------------------------------------------------------------------------------- /save_entity.md: -------------------------------------------------------------------------------- 1 | # 保存实体 2 | 3 | -------------------------------------------------------------------------------- /special_parameter_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/special_parameter_handling.md -------------------------------------------------------------------------------- /specifications.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | -------------------------------------------------------------------------------- /spring_data_extensions.md: -------------------------------------------------------------------------------- 1 | # Spring Data的扩展 2 | 3 | -------------------------------------------------------------------------------- /spring_namespace.md: -------------------------------------------------------------------------------- 1 | # Spring命名空间 2 | 3 | -------------------------------------------------------------------------------- /standalone_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/standalone_usage.md -------------------------------------------------------------------------------- /stored_procedures.md: -------------------------------------------------------------------------------- 1 | # 使用存储过程 2 | 3 | -------------------------------------------------------------------------------- /streaming_query_results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/streaming_query_results.md -------------------------------------------------------------------------------- /streaming_queryresults.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/ebook.css: -------------------------------------------------------------------------------- 1 | /* CSS for ebook */ 2 | -------------------------------------------------------------------------------- /transaction_query_methods.md: -------------------------------------------------------------------------------- 1 | # 事务处理查询方法 2 | 3 | -------------------------------------------------------------------------------- /transactionality.md: -------------------------------------------------------------------------------- 1 | # 事务处理 2 | 3 | -------------------------------------------------------------------------------- /using_jpa_namedquery.md: -------------------------------------------------------------------------------- 1 | # 使用JAP命名查询 2 | 3 | -------------------------------------------------------------------------------- /using_named_parameters.md: -------------------------------------------------------------------------------- 1 | # 使用命名参数 2 | 3 | -------------------------------------------------------------------------------- /using_query_tag.md: -------------------------------------------------------------------------------- 1 | # 使用@Query 2 | 3 | -------------------------------------------------------------------------------- /using_spel_expressions.md: -------------------------------------------------------------------------------- 1 | # 使用SpEL表达式 2 | 3 | -------------------------------------------------------------------------------- /web_support.md: -------------------------------------------------------------------------------- 1 | # 网络支持 2 | 3 | -------------------------------------------------------------------------------- /workingwith_spring_data_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/workingwith_spring_data_repositories.md -------------------------------------------------------------------------------- /xml_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokyo2006/spring-data/HEAD/xml_configuration.md --------------------------------------------------------------------------------