4

我有下面的简单代码用于测试 IntelliJ 中的 NonNull 注释。

然后我转到:IntelliJ -> 文件 -> 设置 -> 检查 -> 可能的错误 -> 恒定条件和异常,然后设置严重性:作为错误。

这样做,它会标记行“print(null);” 作为预期的错误。但是,执行 IntelliJ -> Build -> Rebuild 项目,它可以工作,并且没有显示任何错误,也没有显示任何警告。

为什么会这样?为什么 IntelliJ 在构建项目时不抱怨?

如何查看 NonNull 违规列表?

如果发现 NonNull 违规,有没有办法强制 IntelliJ 使编译失败?


注意:IntelliJ 设置为考虑到 firebug 注释(默认情况下);此外,使用 org.jetbrains.annotations.NotNull 会产生完全相同的结果。


src/main/java/test/Hello.java

package test;
import edu.umd.cs.findbugs.annotations.NonNull;
public class Hello {
    static public void print(@NonNull Object value) {
        System.out.println("value: " + value.toString());
    }

    static public void main(String[] args) {
        if (args.length > 0) {
            print(args[0]);
        } else {
            print(null);
        }
    }
}

和 pom.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>hello</groupId>
  <artifactId>hello</artifactId>
  <version>1.0</version>

  <dependencies>
    <dependency>
      <groupId>net.sourceforge.findbugs</groupId>
      <artifactId>annotations</artifactId>
      <version>1.3.2</version>
    </dependency>
    <dependency>
      <groupId>net.sourceforge.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>1.3.7</version>
    </dependency>
  </dependencies>
</project>
4

1 回答 1

3

代码检查不是编译器错误,目前如果检查报告了一些问题,即使严重级别设置为 ,也无法编译失败error

要获得项目范围内的结果,请使用Analyze| Inspect Code具有适当的检查配置文件。

IDEA 项目问题跟踪器中有类似的功能请求,但似乎不是很受欢迎(几乎 2 岁和零票)。

于 2012-11-09T15:56:45.983 回答