Reputation: 55
I am using Dozer mapper to map Service objects to Value objects. I am mapping the date by means of the following:
<mapping date-format="dd-MM-yyyy">
<class-a>MySo</class-a>
<class-b>MyVO</class-b>
<field>
<a>dateStr</a>
<b>dateObj</b>
</field>
</mapping>
However, I need to specify the format for the date each time. Is there some other approach to map string date directly?
Upvotes: 1
Views: 4109