|
|
|
|
|
by mhaberl
1546 days ago
|
|
As far as I can tell the lombok is certainly less used than say 5 years ago. Java records can help somewhat but as others point out, theay are not compatible with JPA, sometimes you get real value from Lomboks @Builder etc. On the other hand if you combine lombok and JPA entities you can easily shoot yourself in the foot (autogenerated hashcode and equals can cause issues in some cases) |
|