Filip Hrisafov
Filip Hrisafov
@jvierling can you reproduce this on demand?
I need to have a better look at this. However, I don't like the fact that this is done using the `BeanMappingMethod`. What might make more sense is to do...
>You can actually use `@ValueMapping` with this solution. This is even present in the current test example. Indeed, I missed that. >It would indeed be better to introduce a `source`...
This is a tricky one as it is combined with a source property. We need to see if we can avoid this check if there is a default value provided...
That would indeed be a good workaround. I also don't see much of the use case here. It can even be done `stringProperty.setValue( string != null ? string : ""...
@yelhouti have you looked into `CollectionMappingStrategy#TARGET_IMMUTABLE`?
>Wouldn't that make more sense tu be able to override at that level ? You are right, I think that it does make sense to support it on `@BeanMapping` and...
Sure go ahead @yelhouti
Thanks for the detailed explanation @fabianiacob, I think that this is like this by design. Adder methods are not taken into consideration if there is no getter / setter to...
@denis1989java what does it happen when you do ```java @Mapping(target = "description", source = "description") public CxmlShippingInstruction mapToCxmlShippingInstruction(CxmlDescription description); ``` You might need to upgrade to 1.6 so that you...