Hi,
I customized the FixedLengthTokenizer and included a property for it. if there is any exception arise in the setter method it is calling twice.
Here is my code Snippet
if there is any exception in the method the bean is loading again after it register the status in the jobRepositary. Also let me know if further details requiredCode:public class ExtendFixedTokenizer extends FixedLengthTokenizer { private String formatFile; public void setFormatFile(String formatFile) throws Exception { System.out.println("formatFile"+formatFile); this.formatFile = formatFile; //calling a method which throws exception } }
Please advice if any thing wrong in this.


Reply With Quote