spring批量从文件中获取数据并传递给过程

时间:2015-11-06 14:25:22

标签: java spring spring-batch

对于Spring批处理项目,我需要从文件中获取日期,然后我需要将此日期传递给过程,然后运行该过程。

然后必须将程序的结果写入csv文件 我尝试过使用听众但却无法做到这一点。

任何人都可以告诉我们如何实现这一目标,或者如果可能的话,你可以在github上分享任何示例代码。

1 个答案:

答案 0 :(得分:1)

首先,您需要从文件中获取日期并将其存储在JobExecutionContext中。最简单的解决方案之一是创建自定义Tasklet来阅读文本文件,并通过String

将结果StepExecutionListener存储在上下文中

此tasklet采用file参数并使用键file.date存储结果字符串:

public class CustomTasklet implements Tasklet, StepExecutionListener {

    private String date;
    private String file;    

    @Override
    public void beforeStep(StepExecution stepExecution) {}

    @Override
    public ExitStatus afterStep(StepExecution stepExecution) {
        stepExecution.getJobExecution().getExecutionContext().put("file.date", date);
    }

    @Override
    public RepeatStatus execute(StepContribution contribution, ChunkContext chunkContext) throws Exception {

         // Read from file using FileUtils (Apache)
         date = FileUtils.readFileToString(file);
    }

    public void setFile(String file) {
        this.file = file;
    }
}

以这种方式使用:

 <batch:step>
      <batch:tasklet>
            <bean class="xx.xx.xx.CustomTasklet">
                <property name="file" value="${file.path}"></property>
            </bean>
        </batch:tasklet>
 </batch:step>

然后,您将使用具有后期绑定的Chunk来检索先前存储的值(即使用#{jobExecutionContext['file.date']})。

读者将是StoredProcedureItemReader

<bean class="org.springframework.batch.item.database.StoredProcedureItemReader">
    <property name="dataSource" ref="dataSource" />
    <property name="procedureName" value="${procedureName}" />
    <property name="fetchSize" value="50" />
    <property name="parameters">
        <list>
            <bean class="org.springframework.jdbc.core.SqlParameter">
                <constructor-arg index="0" value="#{jobExecutionContext['file.date']}" />
            </bean>
        </list>
    </property>
    <property name="rowMapper" ref="rowMapper" />
    <property name="preparedStatementSetter" ref="preparedStatementSetter" />
</bean>

作者将是FlatFileItemWriter

<bean class="org.springframework.batch.item.file.FlatFileItemWriter" scope="step">
    <property name="resource" value="${file.dest.path}" />
    <property name="lineAggregator" ref="lineAggregator" />
</bean>