[ 
https://issues.apache.org/jira/browse/JCR-864?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christophe Lombart resolved JCR-864.
------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.4

Done - Now the date attributes are not converted if the UtilDateConverteImpl is 
used. 
XPath queries seem to work with date.

> Bug in 
> org.apache.portals.graffito.jcr.persistence.atomictypeconverter.impl.UtilDateTypeConverterImpl
> -----------------------------------------------------------------------------------------------------
>
>                 Key: JCR-864
>                 URL: https://issues.apache.org/jira/browse/JCR-864
>             Project: Jackrabbit
>          Issue Type: Bug
>          Components: jcr-mapping
>            Reporter: Martin Koci
>            Assignee: Christophe Lombart
>             Fix For: 1.4
>
>         Attachments: UtilDateTypeConverterImpl.patch
>
>
> In this converter following line is used:
> return this.getValueFactory().createValue(((java.util.Date) 
> propValue).getTime());
> but propValue must be converted to java.util.Calendar, not into long! 
> ValueFactory than converts to LongValue not DateValue as expected.
> Following code works OK:
> final long timeInMilis = ((java.util.Date) propValue).getTime();
> final Calendar calendar = Calendar.getInstance();
> calendar.setTimeInMillis(timeInMilis);
> return this.getValueFactory().createValue( calendar );
> but I dont know better Date-> Calendar conversion.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to