An Eclipse plug-in for working with MapStruct
- For latest released version: https://mapstruct.org/eclipse/
- Completion of
target
andsource
properties in@Mapping
annotation for bean mappings - Completion of
target
andsource
enum constants in@ValueMapping
annotations for enum mappings - Completion of
componentModel
values in@Mapper
annotation
- Quick-Fixes for error/warning message
"Unmapped target property: ..."
:- Ignore unmapped target property adds
@Mapping( target = "prop", ignore = true )
to the method
- Ignore unmapped target property adds
- Quick-Fixes for error message
"Can't map property X prop to Y prop. Consider to declare/implement a mapping method ..."
:- Add method: Y toY(X prop) adds an appropriate method declaration to the mapper.
- Ignore unmapped target property adds
@Mapping( target = "prop", ignore = true )
to the method.