Re: Digester crashes in run mode and succeeds with java debugger

2012-07-16 Thread Simone Tripodi
Hi Stepan, I guess that in debug mode, inside your IDE JVM, the invoked method is public void setFf(String date); OTOH, when running from console, log clearly show that JVM invokes public void setFf(Date date); You have two options: * drop the Date argument support (less good, IMHO); * Rely o

Digester crashes in run mode and succeeds with java debugger

2012-07-15 Thread Stepan Yakovenko
HI I've got application that uses digerster. There is a bean with two setters: public void setFf(String date); public void setFf(Date date); Crash happens here: org.apache.commons.beanutils.ConversionException: DateConverter does not support default String to 'Date' conversion. at org.a