我正在使用推土机映射器。如果字段为空,我如何将默认值设置为空?

发布于 2024-10-16 18:53:33 字数 125 浏览 2 评论 0原文

我需要共同转换很多字符串字段,如果字段为空,我想设置自己的值。我该怎么做? 将设置器写入所有字段,我认为这不是最好的解决方案。推土机映射器中是否有用于此操作的选项?
我也可以编写自己的转换器,但我想知道,有没有通用的解决方案?

i need co convert a lot of string fields, and if field is empty, i want to set my own value. How can i do it?
Write setters to all fields, i think it's not the best solution. Are there options in dozer mapper, for this operation?
Also i can write my own converter, but i want to know, is there any universal solutions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠北森屋 2024-10-23 18:53:33

您可以设置 map-nullmap-empty-stringfalse 以绕过null 或空字符串值的映射。例如:

<mapping map-null="false" map-empty-string="false">
  <class-a>org.dozer.vo.AnotherTestObject</class-a>
  <class-b>org.dozer.vo.AnotherTestObjectPrime</class-b>    
  <field>
    <a>field4</a>
    <b>to.one</b>
  </field>
</mapping>  

但是,如果您想将其设置为您自己的默认值,那么我认为您必须编写 自定义转换器

You can set map-null and map-empty-string to false to bypass the mapping of null or empty String values. For example:

<mapping map-null="false" map-empty-string="false">
  <class-a>org.dozer.vo.AnotherTestObject</class-a>
  <class-b>org.dozer.vo.AnotherTestObjectPrime</class-b>    
  <field>
    <a>field4</a>
    <b>to.one</b>
  </field>
</mapping>  

However, if you want to set it to your own default value, then I think you will have to write a Custom Converter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文