Skip to content

Commit c714494

Browse files
author
nebhale
committed
[BATCH-63] Still missing resources
1 parent feeb5bd commit c714494

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<beans:beans xmlns="http://www.springframework.org/schema/batch"
2+
xmlns:beans="http://www.springframework.org/schema/beans"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="
5+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
6+
http://www.springframework.org/schema/batch http://www.springframework.org/schema/batch/spring-batch-1.0.xsd">
7+
8+
<job id="processJob">
9+
<tasklet-step id="process" tasklet=""/>
10+
</job>
11+
12+
</beans:beans>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<beans:beans xmlns="http://www.springframework.org/schema/batch"
2+
xmlns:beans="http://www.springframework.org/schema/beans"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="
5+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
6+
http://www.springframework.org/schema/batch http://www.springframework.org/schema/batch/spring-batch-1.0.xsd">
7+
8+
<job id="processJob">
9+
<tasklet-step id="process" tasklet="processorTasklet"/>
10+
</job>
11+
12+
<beans:bean id="processorTasklet" class="org.springframework.batch.execution.configuration.TaskletTestBean"/>
13+
14+
</beans:beans>

0 commit comments

Comments
 (0)