[ 
https://issues.apache.org/jira/browse/WICKET-4694?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13428113#comment-13428113
 ] 

Sven Meier commented on WICKET-4694:
------------------------------------

This is the current line 43 in wicket-1.5.x:

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

Looks pretty much the same what you're suggesting and hasn't changed for the 
last two years.
                
> 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
>              Labels: (java.util.Date), 1.5, ClassCastException, 
> SqlDateConverter
>
> 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 but 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