如何让checkstyle跳过eclipse生成的equals()和hashcode()方法?

2022-09-02 22:38:47

我们的项目包含几个类,我们有Eclipse生成的equals()和hashCode()方法(右键单击->Source -> Generate hashCode()和equals())。

例:

@Override
public boolean equals(Object obj) {
    if (this == obj)
        return true;
    if (obj == null)
        return false;
    if (getClass() != obj.getClass())
        return false;
    final MyTO other = (MyTO) obj;
    if (num != other.num)
        return false;
    if (name == null) {
        if (other.name != null)
            return false;
    } else if (!name.equals(other.name))
        return false;
    if (table == null) {
        if (other.table != null)
            return false;
    } else if (!table.equals(other.table))
        return false;
    return true;
}

这些方法非常适合我们的应用程序,但不幸的是,没有通过Checkstyle的循环复杂性检查。由于这些方法是自动生成的,因此我们不关心它们的复杂性。我们可以从 Checkstyle 中抑制整个类,但我们更希望能够只排除这两种方法。

有没有人知道如何在Checkstyle中创建自定义规则,该规则将允许我们以任何方式排除生成的equals()和hashCode()方法,而不排除整个类?


答案 1

您应该设置一个 .有关此内容的更多信息,请单击此处SupressionCommentFilter

有时有违反支票的合法理由。当这是有问题的代码问题而不是个人偏好时,覆盖策略的最佳位置是代码本身。半结构化注释可以与检查相关联。


答案 2

推荐