From 49262d655d46e7d390019aa3eaa0c43f47a26c6c Mon Sep 17 00:00:00 2001 From: lucasward Date: Mon, 7 Jul 2008 16:54:16 +0000 Subject: [PATCH] BATCH-716: Updated migration guide. --- src/site/apt/migration/1.0.1-1.1.apt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/site/apt/migration/1.0.1-1.1.apt b/src/site/apt/migration/1.0.1-1.1.apt index 62c9cdfe4..949b297cd 100644 --- a/src/site/apt/migration/1.0.1-1.1.apt +++ b/src/site/apt/migration/1.0.1-1.1.apt @@ -20,9 +20,12 @@ Spring Batch 1.1 Release Notes * MapJobRepositoryFactoryBean for easy setup of in-memory repository * StepExecution has persistent rollbackCount, readSkipCount and writeSkipCount + + * All ItemReader implementations default to returning null in the initial call to read if no data is found to process. NoWorkFoundListener can be used to fail a step if no work was done. (e.g. input was empty) - * NoWorkFoundListener can be used to fail the step if no work was done (e.g. input was empty) - + * LineTokenizer implementations now properly enforce formatting. For example, a fixed length line must match the maximum line length defined in the provided ranges. + + * FlatFileItemWriter must be opened before it can be written to. However, open can be called multiple times before closing. * Other