Skip to main content

One post tagged with "java"

View All Tags

Lombok Gotchas

ยท 2 min read

When building out your domain model it is tempting to annotate your entities with @Data.

@Data is a shortcut for @ToString, @EqualsAndHashCode, @Getter on all fields, @Setter on all non-final fields, and @RequiredArgsConstructor [^1].