Spring Batch documentation about chunk-oriented step versus reality?
问题 On the documentation of Spring Batch for configuring a step a clear picture describes how the read process and write is performed. read process ... read process // until #amountOfReadsAndProcesses = commit interval write Corresponding (according to the doc): List items = new Arraylist(); for(int i = 0; i < commitInterval; i++){ Object item = itemReader.read() Object processedItem = itemProcessor.process(item); items.add(processedItem); } itemWriter.write(items); However when I debug and put a