[BATCH-63] Still missing resources

This commit is contained in:
nebhale
2008-02-20 13:38:13 +00:00
parent feeb5bdcf0
commit c7144945bc
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<beans:beans xmlns="http://www.springframework.org/schema/batch"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/batch http://www.springframework.org/schema/batch/spring-batch-1.0.xsd">
<job id="processJob">
<tasklet-step id="process" tasklet=""/>
</job>
</beans:beans>

View File

@@ -0,0 +1,14 @@
<beans:beans xmlns="http://www.springframework.org/schema/batch"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/batch http://www.springframework.org/schema/batch/spring-batch-1.0.xsd">
<job id="processJob">
<tasklet-step id="process" tasklet="processorTasklet"/>
</job>
<beans:bean id="processorTasklet" class="org.springframework.batch.execution.configuration.TaskletTestBean"/>
</beans:beans>