Skip to content
Advertisement

MapStruct. Mapping fields of list element by expression

Good afternoon! There is an object that contains field as type List, is it possible to set each (some) field of type T, by values generated in the annotation by the expression parameter?

For example:

Target object:

JavaScript

Mapper interface:

JavaScript

How can such an idea be implemented? In the documentation, I found only examples with 1:1 mapping.

Edited:

Also, i try to use this:

JavaScript

But in this case i have some error with Qualifier.

Advertisement

Answer

It is possible by mapping the object to the same type:

JavaScript

I myself would look into setting the default values at the point where you construct the object.

For example:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement