Is there a way to configure dozer via its xml mapping file to convert a primitive int field value of -1 to a null object reference?
The legacy object model defaults the value to -1, so that zero can be a valid selection.
The newer object model we are mapping to, assumes that non-selected values will be null, and that any initialized object value is valid. I'm hoping to avoid the need to write a custom converter for this case.