我需要配置示例以完全禁用hashCode()equals()方法的检查样式。

最佳答案

这并不是您问题的真正答案,但是Lombok确实希望避免这种样板代码:http://projectlombok.org

对于这种情况,您可以使用以下方法注释类:

@EqualsAndHashCode(of="id")

要么
@EqualsAndHashCode(excludes={"these","fields","wont","be","compared"})

尚未针对Checkstyle进行测试...

07-24 18:37