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?

有帮助吗?

解决方案

In dozer.xml we can specify some default configuration.

for eg.

<configuration>
    <stop-on-errors>true</stop-on-errors>
    <date-format>dd-MM-yy</date-format>
    <wildcard>true</wildcard>
</configuration>

here is Link to refer.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top