Hi,
I had my first day with Lombok and I really liked it ;) Just found the @Builder annotation and I'm quite exited.
But unfortunately in my this extremely useful feature does not work properly. I have an abstract class (AbstractEntities) which is the parent of all my entities. In AbstractEntity there is an required attribute "myRequiredAttribute". If I now put the @Builder annotation to my entities the Builder has no method the set "myRequiredAttribute".
To you see any chance to let @Builder not only inspect the current entity but also the parent entities? Or maybe the inspection is done until @MappedSuperclass is found?
Regards,
Christoph