
[Spring] warning: Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type.
·
Spring
* User class의 @Data에서 warning 발견warning: Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type.* 해결 방법 - @EqualsAndHashCode(callSuper = true) or @EqualsAndHashCode(callSuper = false) 추가@Data 에는 @Getter, @Setter, @RequiredArgsConstructor, @..