1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.springframework.batch.sample.support;
18
19 import java.io.IOException;
20 import java.io.Writer;
21
22 import org.springframework.batch.core.StepExecution;
23 import org.springframework.batch.core.listener.StepExecutionListenerSupport;
24 import org.springframework.batch.item.file.FlatFileFooterCallback;
25
26
27
28
29 public class SummaryFooterCallback extends StepExecutionListenerSupport implements FlatFileFooterCallback{
30
31 private StepExecution stepExecution;
32
33 public void writeFooter(Writer writer) throws IOException {
34 writer.write("footer - number of items written: " + stepExecution.getWriteCount());
35 }
36
37 @Override
38 public void beforeStep(StepExecution stepExecution) {
39 this.stepExecution = stepExecution;
40 }
41
42
43 }