Skip to content

Commit

Permalink
RESOLVED - issue BATCH-50: Allow fixed-length file columns with colum…
Browse files Browse the repository at this point in the history
…n ranges

http://opensource.atlassian.com/projects/spring/browse/BATCH-50

Applied patch (and moved property editor).
  • Loading branch information
dsyer committed Oct 10, 2007
1 parent 0cc6d6a commit 4744f78
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions execution/src/test/resources/simple-container-definition.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:p="http://www.springframework.org/schema/p"
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/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">

xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">

<bean id="simpleFacade"
class="org.springframework.batch.execution.facade.SimpleJobExecutorFacade">
<property name="jobRepository" ref="simpleJobRepository" />
Expand Down Expand Up @@ -100,7 +100,10 @@
<bean
class="org.springframework.batch.support.IntArrayPropertyEditor" />
</entry>
<entry key="java.util.Date">
<entry key="org.springframework.batch.io.file.support.transform.Range[]">
<bean class="org.springframework.batch.io.file.support.transform.RangeArrayPropertyEditor" />
</entry>
<entry key="java.util.Date">
<bean
class="org.springframework.beans.propertyeditors.CustomDateEditor">
<constructor-arg>
Expand Down

0 comments on commit 4744f78

Please sign in to comment.