Skip to content
Advertisement

How to use Mapstruct with Ad Hoc Setters

I am trying to apply MapStruct to DDD. I created my entities with ad hoc setters like this:

JavaScript

and I have a EmployeeDto to send data to frontend API:

JavaScript

so, I am trying to use MapStruct to map, but it is not working because my ad hoc setter. How could I resolve this problem?

Advertisement

Answer

You have to implement custom AccessorNamingStrategy. The way how to do it is well documented in section 13.1. Custom Accessor Naming Strategy of a MapStruct documentation.

In your case it should look something like this:

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