1

我正在使用 Dozer 映射器将 Service 对象映射到 Value 对象。我通过以下方式映射日期:

<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>

但是,我每次都需要指定日期的格式。是否有其他方法可以直接映射字符串日期?

4

1 回答 1

2

在 dozer.xml 中我们可以指定一些默认配置。

例如。

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

这是要参考的链接。

于 2012-06-21T06:05:06.787 回答