Oliver Erhart

Results 67 comments of Oliver Erhart

For the sake of completeness: > ...MapStruct's IDEA plugin does not work... Yes, the `@SuperBuilder` annotation is currently not supported by the IntelliJ MapStruct plugin, see: * https://github.com/mapstruct/mapstruct-idea/issues/159

@p91paul I was able to reproduce this. Thank you. As a workaround, you can change the expression to a custom named mapping method where the source parameter is being ignored:...

I understand your reluctance. Officially supporting it would also mean providing ongoing support, even if the feature changes on Lombok's end. I will provide some tests with delomboked `@SuperBuilder` code...

@filiphr Thanks for the suggestions. I tried to keep it as "original" as possible, hence the equals/hashCode, but no problem. I will remove it. The `package-info.java` was was an attempt...

No updates yet. The corresponding issue #1740 has the 1.7.0 milestone. We are currently concentrating on 1.6.0.

Would you be so kind and provide a sample code of a mapper using this in combination with `@InheritInverseConfiguration`? With this little snippet I don't know where and how the...

I was wondering why there was no test handling this. I just tried the following: ```java @Mapper public interface MapToBeanFromMapWithSource { MapToBeanFromMapWithSource INSTANCE = Mappers.getMapper( MapToBeanFromMapWithSource.class ); @Mapping(target = "targetName",...

Thanks for testing. Looks like I made a typo or something. Yes, you're right. It works on `main`, but not on my branch. To be backwards compatible, we would need...

Here's my take with the escaped character. It is now possible to uses nested mappings with dotted keys as I stated in my previous comment. Please have a look. Here...

Thank you for your detailed and thorough review. > Alternatively we can also go with a new annotation for this since for this `source` is mandatory, but not `target`. Agreed...