[Edit]
+
0
-
0
lombok @Data vs @Value
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32@Data - mutable entity @Value - immutable entity ------ @Data Equivalent to @Getter @Setter @RequiredArgsConstructor @ToString @EqualsAndHashCode More: https://projectlombok.org/features/Data ------ @Value Generates a lot of code which fits with a class that is a representation of an immutable entity. Equivalent to: @Getter @FieldDefaults(makeFinal=true, level=AccessLevel.PRIVATE) @AllArgsConstructor @ToString @EqualsAndHashCode More: https://projectlombok.org/features/Value