I am trying to map two JavaBean structures (here simplified):
package foo;
public class Container {
private List<Item> items;
public List<Item> getItems() { return items; }
public void setItems(List<Item> items) { this.items = items; }
}
public class Item {
private String message;
public String getMessage() { return message; }
public void setMessage(String message) { this.message = message; }
}
In addition I have equal Beans with the same properties in package bar and do the mapping between the two like
ModelMapper mapper = new ModelMapper();
bar.Container barContainer = mapper.map(fooContainer, bar.Container.class);
where the source fooContainer contains a list of items some of which have the property message set to a String and some of them have null as property value.
In the mapping result I discover that the list of foo.Item seems to be correctly mapped to a list of bar.Item also the first message properties are mapped correctly. But after the first item with a null value of the message property all message property values of hte following items are mapped to null regardless of the content of the source properties.
With debugging I found out why:
Once the destination property value is null the message property path is marked as shaded in MappingEngineImpl:207 and then ignored for the subsequent items in MappingEngineImpl:142.
Is this a bug of moddelmapper or do I have to configure modelmapper in another way to enable mapping of list of bean properties?