gpt4 book ai didi

java - 如何抑制 PMD 中的违规行为?

转载 作者:IT老高 更新时间:2023-10-28 13:49:05 25 4
gpt4 key购买 nike

当我运行 PMD 分析时,我收到违规:

Each class should declare at least one constructor

此违规发生在 Spring Controller 上。这个 Controller 是由 Spring 实例化的,所以我不需要调用这个类。

忽略此违规行为的推荐方法是什么?

根据this doc可以使用 //NOPMD 但我只想忽略特定的违规行为。

最佳答案

PMD 还支持@SuppressWarnings 注释:

// This will suppress all the PMD warnings in this class
@SuppressWarnings("PMD")
public class Bar {
void bar() {
int foo;
}
}

或者只是一种警告:

// This will suppress UnusedLocalVariable warnings in this class
@SuppressWarnings("PMD.UnusedLocalVariable")
public class Bar {
void bar() {
int foo;
}
}

您可能还想查看creating rulesetssuppressing warnings .也许您想禁用某个规则,或者从 PMD 检查中排除某些文件和文件夹。

关于java - 如何抑制 PMD 中的违规行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32272138/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com