Idea使用lombok时warn:Generating equals/hashCode implementation but without a call
子类实体的equals/hasCode方法无法继承父类属性
错误
Warning:(15, 1) java: 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.
- 1
原因
子类实体的equals/hasCode方法无法继承父类属性
解决方法一
@EqualsAndHashCode(callSuper = true)
- 1
解决方法二
加lombok.config配置文件
内容
config.stopBubbling=true
lombok.equalsAndHashCode.callSuper=call
- 1
- 2