我正在使用推土机映射器。如果字段为空,我如何将默认值设置为空?
我需要共同转换很多字符串字段,如果字段为空,我想设置自己的值。我该怎么做? 将设置器写入所有字段,我认为这不是最好的解决方案。推土机映射器中是否有用于此操作的选项?
我也可以编写自己的转换器,但我想知道,有没有通用的解决方案?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以设置
map-null
和map-empty-string
到false
以绕过null 或空字符串值的映射。例如:但是,如果您想将其设置为您自己的默认值,那么我认为您必须编写 自定义转换器。
You can set
map-null
andmap-empty-string
tofalse
to bypass the mapping of null or empty String values. For example:However, if you want to set it to your own default value, then I think you will have to write a Custom Converter.