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?
I am using dozer mapper. How i can set my default value to field if it is empty?
9.2k Views Asked by Funtime At
1
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.