├── 01_introduction ├── 11.md ├── 12.md ├── 13.md ├── 14.md ├── 15.md ├── Creating_Batch_Service.md ├── README.md ├── Spring_Batch_MySQL.md ├── fig1-basicl-ogic.png ├── fig2-FlatFileItemReader.png ├── fig3-chunks.png ├── osjp-spring-batch-example.zip ├── partitioned_cn.png ├── partitioned_en.png └── spring-batch-layers.png ├── 02_spring_batch_30 ├── 21.md ├── 22.md ├── 23.md ├── 24.md ├── 25.md └── README.md ├── 03_domain_language ├── 301_batch_relation.png ├── 302_level.png ├── 303_job-stereotypes-parameters.png ├── 304_jobHeirarchyWithSteps.png └── README.md ├── 04_config_job ├── 41.md ├── 42.md ├── 43.md ├── 44.md ├── 44_1_job-launcher-sequence-sync.png ├── 44_2_job-launcher-sequence-async.png ├── 45.md ├── 45_1_launch-from-request.png ├── 46.md ├── 46_1_job-repository.png ├── 46_2_job-repository-advanced.png ├── README.md └── spring-batch-reference-model.png ├── 05_config_step ├── 51.md ├── README.md ├── chunk-oriented-processing.png └── step.png ├── 06_ItemReaders_ItemWriters ├── 61.md ├── 610.md ├── 611.md ├── 612.md ├── 613.md ├── 613_1.md ├── 613_2.md ├── 62.md ├── 63.md ├── 64.md ├── 65.md ├── 66.md ├── 66_1.md ├── 66_2.md ├── 66_3.md ├── 67.md ├── 67_0_0_xmlinput.png ├── 67_0_1_oxm-fragments.png ├── 67_1.md ├── 67_2.md ├── 68.md ├── 69.md ├── 69_1.md ├── 69_1_cursorExample.png ├── 69_2.md ├── 69_3.md ├── 69_3_1_errorOnFlush.png ├── 69_3_2_errorOnWrite.png └── README.md ├── 07_scaling_parallel ├── 71.md ├── 72.md ├── 73.md ├── 74.md ├── README.md ├── partitioning-overview.png ├── partitioning-spi.png └── remote-chunking.png ├── 08_repeat └── README.md ├── 09_retry ├── 91.md ├── 92.md ├── 93.md ├── 94.md ├── 95.md ├── README.md └── note.png ├── 10_unit_test ├── 101.md ├── 102.md ├── 103.md ├── 104.md ├── 105.md ├── 106.md └── README.md ├── 11_common_batch_patterns ├── 111.md ├── 112.md ├── 113.md ├── 114.md ├── 115.md ├── 116.md ├── 117.md ├── 118.md ├── 11_01_drivingQueryExample.png ├── 11_02_drivingQueryJob.png └── README.md ├── 12_jsr352 ├── 121.md ├── 1210.md ├── 122.md ├── 123.md ├── 124.md ├── 125.md ├── 126.md ├── 127.md ├── 128.md ├── 129.md └── README.md ├── 13_integration ├── 1301_launch-batch-job.png ├── 1302_handling-informational-messages.png ├── 1303_remote-chunking-sbi.png ├── 1304_remote-partitioning.png └── README.md ├── 14_A └── README.md ├── 15_B ├── 1501_meta-data-erd.png └── README.md ├── 16_C └── README.md ├── 17_glossary └── README.md ├── README.md ├── SUMMARY.md ├── book.json ├── cover.jpg ├── cover_small.jpg └── package.json /01_introduction/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/11.md -------------------------------------------------------------------------------- /01_introduction/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/12.md -------------------------------------------------------------------------------- /01_introduction/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/13.md -------------------------------------------------------------------------------- /01_introduction/14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/14.md -------------------------------------------------------------------------------- /01_introduction/15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/15.md -------------------------------------------------------------------------------- /01_introduction/Creating_Batch_Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/Creating_Batch_Service.md -------------------------------------------------------------------------------- /01_introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/README.md -------------------------------------------------------------------------------- /01_introduction/Spring_Batch_MySQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/Spring_Batch_MySQL.md -------------------------------------------------------------------------------- /01_introduction/fig1-basicl-ogic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/fig1-basicl-ogic.png -------------------------------------------------------------------------------- /01_introduction/fig2-FlatFileItemReader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/fig2-FlatFileItemReader.png -------------------------------------------------------------------------------- /01_introduction/fig3-chunks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/fig3-chunks.png -------------------------------------------------------------------------------- /01_introduction/osjp-spring-batch-example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/osjp-spring-batch-example.zip -------------------------------------------------------------------------------- /01_introduction/partitioned_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/partitioned_cn.png -------------------------------------------------------------------------------- /01_introduction/partitioned_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/partitioned_en.png -------------------------------------------------------------------------------- /01_introduction/spring-batch-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/01_introduction/spring-batch-layers.png -------------------------------------------------------------------------------- /02_spring_batch_30/21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/02_spring_batch_30/21.md -------------------------------------------------------------------------------- /02_spring_batch_30/22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/02_spring_batch_30/22.md -------------------------------------------------------------------------------- /02_spring_batch_30/23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/02_spring_batch_30/23.md -------------------------------------------------------------------------------- /02_spring_batch_30/24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/02_spring_batch_30/24.md -------------------------------------------------------------------------------- /02_spring_batch_30/25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/02_spring_batch_30/25.md -------------------------------------------------------------------------------- /02_spring_batch_30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/02_spring_batch_30/README.md -------------------------------------------------------------------------------- /03_domain_language/301_batch_relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/03_domain_language/301_batch_relation.png -------------------------------------------------------------------------------- /03_domain_language/302_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/03_domain_language/302_level.png -------------------------------------------------------------------------------- /03_domain_language/303_job-stereotypes-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/03_domain_language/303_job-stereotypes-parameters.png -------------------------------------------------------------------------------- /03_domain_language/304_jobHeirarchyWithSteps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/03_domain_language/304_jobHeirarchyWithSteps.png -------------------------------------------------------------------------------- /03_domain_language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/03_domain_language/README.md -------------------------------------------------------------------------------- /04_config_job/41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/41.md -------------------------------------------------------------------------------- /04_config_job/42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/42.md -------------------------------------------------------------------------------- /04_config_job/43.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/43.md -------------------------------------------------------------------------------- /04_config_job/44.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/44.md -------------------------------------------------------------------------------- /04_config_job/44_1_job-launcher-sequence-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/44_1_job-launcher-sequence-sync.png -------------------------------------------------------------------------------- /04_config_job/44_2_job-launcher-sequence-async.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/44_2_job-launcher-sequence-async.png -------------------------------------------------------------------------------- /04_config_job/45.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/45.md -------------------------------------------------------------------------------- /04_config_job/45_1_launch-from-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/45_1_launch-from-request.png -------------------------------------------------------------------------------- /04_config_job/46.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/46.md -------------------------------------------------------------------------------- /04_config_job/46_1_job-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/46_1_job-repository.png -------------------------------------------------------------------------------- /04_config_job/46_2_job-repository-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/46_2_job-repository-advanced.png -------------------------------------------------------------------------------- /04_config_job/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/README.md -------------------------------------------------------------------------------- /04_config_job/spring-batch-reference-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/04_config_job/spring-batch-reference-model.png -------------------------------------------------------------------------------- /05_config_step/51.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/05_config_step/51.md -------------------------------------------------------------------------------- /05_config_step/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/05_config_step/README.md -------------------------------------------------------------------------------- /05_config_step/chunk-oriented-processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/05_config_step/chunk-oriented-processing.png -------------------------------------------------------------------------------- /05_config_step/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/05_config_step/step.png -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/61.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/61.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/610.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/610.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/611.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/611.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/612.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/612.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/613.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/613.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/613_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/613_1.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/613_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/613_2.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/62.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/62.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/63.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/63.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/64.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/65.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/65.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/66.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/66.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/66_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/66_1.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/66_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/66_2.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/66_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/66_3.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/67.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/67.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/67_0_0_xmlinput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/67_0_0_xmlinput.png -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/67_0_1_oxm-fragments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/67_0_1_oxm-fragments.png -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/67_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/67_1.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/67_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/67_2.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/68.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/68.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/69.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/69.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/69_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/69_1.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/69_1_cursorExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/69_1_cursorExample.png -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/69_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/69_2.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/69_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/69_3.md -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/69_3_1_errorOnFlush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/69_3_1_errorOnFlush.png -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/69_3_2_errorOnWrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/69_3_2_errorOnWrite.png -------------------------------------------------------------------------------- /06_ItemReaders_ItemWriters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/06_ItemReaders_ItemWriters/README.md -------------------------------------------------------------------------------- /07_scaling_parallel/71.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/07_scaling_parallel/71.md -------------------------------------------------------------------------------- /07_scaling_parallel/72.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/07_scaling_parallel/72.md -------------------------------------------------------------------------------- /07_scaling_parallel/73.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/07_scaling_parallel/73.md -------------------------------------------------------------------------------- /07_scaling_parallel/74.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/07_scaling_parallel/74.md -------------------------------------------------------------------------------- /07_scaling_parallel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/07_scaling_parallel/README.md -------------------------------------------------------------------------------- /07_scaling_parallel/partitioning-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/07_scaling_parallel/partitioning-overview.png -------------------------------------------------------------------------------- /07_scaling_parallel/partitioning-spi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/07_scaling_parallel/partitioning-spi.png -------------------------------------------------------------------------------- /07_scaling_parallel/remote-chunking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/07_scaling_parallel/remote-chunking.png -------------------------------------------------------------------------------- /08_repeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/08_repeat/README.md -------------------------------------------------------------------------------- /09_retry/91.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/09_retry/91.md -------------------------------------------------------------------------------- /09_retry/92.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/09_retry/92.md -------------------------------------------------------------------------------- /09_retry/93.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/09_retry/93.md -------------------------------------------------------------------------------- /09_retry/94.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/09_retry/94.md -------------------------------------------------------------------------------- /09_retry/95.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/09_retry/95.md -------------------------------------------------------------------------------- /09_retry/README.md: -------------------------------------------------------------------------------- 1 | # 重试处理 2 | -------------------------------------------------------------------------------- /09_retry/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/09_retry/note.png -------------------------------------------------------------------------------- /10_unit_test/101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/10_unit_test/101.md -------------------------------------------------------------------------------- /10_unit_test/102.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/10_unit_test/102.md -------------------------------------------------------------------------------- /10_unit_test/103.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/10_unit_test/103.md -------------------------------------------------------------------------------- /10_unit_test/104.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/10_unit_test/104.md -------------------------------------------------------------------------------- /10_unit_test/105.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/10_unit_test/105.md -------------------------------------------------------------------------------- /10_unit_test/106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/10_unit_test/106.md -------------------------------------------------------------------------------- /10_unit_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/10_unit_test/README.md -------------------------------------------------------------------------------- /11_common_batch_patterns/111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/111.md -------------------------------------------------------------------------------- /11_common_batch_patterns/112.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/112.md -------------------------------------------------------------------------------- /11_common_batch_patterns/113.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/113.md -------------------------------------------------------------------------------- /11_common_batch_patterns/114.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/114.md -------------------------------------------------------------------------------- /11_common_batch_patterns/115.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/115.md -------------------------------------------------------------------------------- /11_common_batch_patterns/116.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/116.md -------------------------------------------------------------------------------- /11_common_batch_patterns/117.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/117.md -------------------------------------------------------------------------------- /11_common_batch_patterns/118.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/118.md -------------------------------------------------------------------------------- /11_common_batch_patterns/11_01_drivingQueryExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/11_01_drivingQueryExample.png -------------------------------------------------------------------------------- /11_common_batch_patterns/11_02_drivingQueryJob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/11_02_drivingQueryJob.png -------------------------------------------------------------------------------- /11_common_batch_patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/11_common_batch_patterns/README.md -------------------------------------------------------------------------------- /12_jsr352/121.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/121.md -------------------------------------------------------------------------------- /12_jsr352/1210.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/1210.md -------------------------------------------------------------------------------- /12_jsr352/122.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/122.md -------------------------------------------------------------------------------- /12_jsr352/123.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/123.md -------------------------------------------------------------------------------- /12_jsr352/124.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/124.md -------------------------------------------------------------------------------- /12_jsr352/125.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/125.md -------------------------------------------------------------------------------- /12_jsr352/126.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/126.md -------------------------------------------------------------------------------- /12_jsr352/127.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/127.md -------------------------------------------------------------------------------- /12_jsr352/128.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/128.md -------------------------------------------------------------------------------- /12_jsr352/129.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/129.md -------------------------------------------------------------------------------- /12_jsr352/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/12_jsr352/README.md -------------------------------------------------------------------------------- /13_integration/1301_launch-batch-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/13_integration/1301_launch-batch-job.png -------------------------------------------------------------------------------- /13_integration/1302_handling-informational-messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/13_integration/1302_handling-informational-messages.png -------------------------------------------------------------------------------- /13_integration/1303_remote-chunking-sbi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/13_integration/1303_remote-chunking-sbi.png -------------------------------------------------------------------------------- /13_integration/1304_remote-partitioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/13_integration/1304_remote-partitioning.png -------------------------------------------------------------------------------- /13_integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/13_integration/README.md -------------------------------------------------------------------------------- /14_A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/14_A/README.md -------------------------------------------------------------------------------- /15_B/1501_meta-data-erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/15_B/1501_meta-data-erd.png -------------------------------------------------------------------------------- /15_B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/15_B/README.md -------------------------------------------------------------------------------- /16_C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/16_C/README.md -------------------------------------------------------------------------------- /17_glossary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/17_glossary/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/book.json -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/cover_small.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmking/SpringBatchReferenceCN/HEAD/package.json --------------------------------------------------------------------------------