BATCH-1308: FixedLengthTokenizer's 'names' property may not have spaces

This commit is contained in:
dhgarrette
2009-06-27 02:13:41 +00:00
parent 4b8ee536ca
commit c7fddc87a8

View File

@@ -907,7 +907,7 @@ UK21341EAH4521535.11customer5</programlisting>
<programlisting>&lt;bean id="fixedLengthLineTokenizer"
class="org.springframework.batch.io.file.transform.FixedLengthTokenizer"&gt;
&lt;property name="names" value="ISIN, Quantity, Price, Customer" /&gt;
&lt;property name="names" value="ISIN,Quantity,Price,Customer" /&gt;
&lt;property name="columns" value="1-12, 13-15, 16-20, 21-29" /&gt;
&lt;/bean&gt;</programlisting>