Duto created WICKET-4694:
----------------------------

             Summary: ClassCastException in SqlDateConverter
                 Key: WICKET-4694
                 URL: https://issues.apache.org/jira/browse/WICKET-4694
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.5.7
         Environment: Windows  7x64, jdk1.6.0_33 (32bits)
            Reporter: Duto


When converting a date string to a java.sql.Date you'll always get a 
ClassCastException like this one:

java.lang.ClassCastException: java.util.Date cannot be cast to java.sql.Date
     at 
org.apache.wicket.util.convert.converters.SqlDateConverter.convertToObject(SqlDateConverter.java:43)

Reason is DateFormat.parse() returns a java.util.Date, which is cast to 
java.sql.Date. One solution would be

return new Date(((java.util.Date)parse(getDateFormat(locale), value, 
locale)).getTime())

See https://issues.apache.org/jira/browse/WICKET-2309

The problem had been fixed in version 1.4, but the (java.util.Date) code was 
remove on 1.5 and It's very important to don't have this error.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to