我有一个Spring Batch作业,包含两个步骤(到目前为止)。
作业中的第一步是在tasklet中实现的。它需要处理逗号分隔值(CSV)文件(使用一大块业务逻辑来确定它们是哪些),并将它们复制到“放置区”目录中。
第二步配置为面向块的处理,具有读写器。读者是MultiResourceItemReader
...,它查找放置区目录中的所有CSV文件,并将每个文件委托给“真实”读取器(解析CSV)。
我的问题是即使第一步成功,第二步也无法在放置区目录中找到任何CSV文件。有趣的是,如果我立即再次运行批处理作业...那么第二步 找到并处理文件!
我在推测,但看起来Spring Batch在开始时解析了第二步的通配符模式......而不是等到第二步运行的时候。即使第一步复制了它应该的文件,第二步已经确定那里没有文件。
我对Spring Batch相当新,并且仍在学习我的方法。我在这里缺少哪些具有背景或范围的明显事物?我的工作定义的相关部分如下。谢谢!
...
<!-- JOB DEFINITION -->
<job id="notificationJob" xmlns="http://www.springframework.org/schema/batch">
<step id="copyFilesToLocal">
<tasklet transaction-manager="jobRepositoryTransactionManager" ref="getFilesTasklet" />
<next on="COMPLETED" to="processFiles"/>
</step>
<step id="processFiles">
<tasklet transaction-manager="ecommerceTransactionManager">
<chunk reader="multiFileReader" writer="notificationEmailWriter" commit-interval="1" />
</tasklet>
</step>
</job>
<!-- FIRST STEP -->
<bean id="getFilesTasklet" class="com.mypackage.FileMovingTasklet">
<property name="localDao">
<bean class="com.mypackage.BatchLocalDao">
<property name="dataSource" ref="jobRepositoryDataSource" />
</bean>
</property>
<property name="sourceDirectory">
<bean id="sourceDirectory" class="org.springframework.core.io.FileSystemResource">
<constructor-arg value="/mnt/source-directory" />
</bean>
</property>
<property name="destinationDirectory">
<bean id="destinationDirectory" class="org.springframework.core.io.FileSystemResource">
<constructor-arg value="/home/myuser/drop-zone" />
</bean>
</property>
</bean>
<!-- SECOND STEP -->
<bean id="multiFileReader" class="org.springframework.batch.item.file.MultiResourceItemReader">
<property name="resources" value="file://home/myuser/drop-zone/*.csv" />
<property name="delegate" ref="myFileReader" />
</bean>
...
答案 0 :(得分:6)
你的“multiFileReader”需要是scope =“step”,所以它推迟了模式扩展(bean属性的初始化),直到执行该步骤。