Skip to content
Advertisement

How to use decorated method in Mapstruct collection mapper?

I am using MapStruct to map from a JPA entity to a POJO DTO, in a Spring app with dependency injection.

I have added some additional processing of the DTO to a method in a decorator as specified in the doc.

It works fine for mapping a single entity. But I also have a mapping for a collection (set) of these entities and the method is called automatically when a collection of those entities is found in a relationship.

However the generated collection mapping method does not use the decorated method to map each entity, is just uses the “vanilla” generated method on the delegate. Here is the code of the generated method :

JavaScript

The delegate method itself is not aware of the decorator and calls the individual item mapping method on itself :

JavaScript

…and the decorated method is never called for the items inside the collection.

Is there a way I can make Mapstruct use the decorator method in the collection mappings, short of writing the collection method manually in my decorator (which works but is verbose and defeats the purpose of having MapStruct in the first place which is not to have to write this kind of code) ?

Advertisement

Answer

I found the solution to my problem : actually my use case was better suited for the MapStruct @AfterMapping methods, I used it and it is now working fine for all cases :

JavaScript

And in the main mapper :

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