我有以下简单的代码来测试IntelliJ中的NonNull注释。
然后我去: IntelliJ - >档案 - >设置 - >检查 - >可能的错误 - >恒定条件和例外 我设置Severity:As error。
这样做,它标记了行“print(null);”如预期的错误。 但是,执行IntelliJ - >构建 - >重建项目, 它有效,它没有显示任何错误,也没有显示任何警告。
为什么会这样?为什么IntelliJ在构建项目时不会抱怨?
如何查看NonNull违规列表?
如果发现NonNull违规,有没有办法强制IntelliJ使编译失败?
注意:设置IntelliJ以考虑firebug注释(默认情况下); 此外,使用org.jetbrains.annotations.NotNull会产生完全相同的结果。
的src /主/爪哇/测试/ 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>
答案 0 :(得分:3)
代码检查不是编译器错误,如果检查报告了某些问题,即使严重性级别设置为error
,也无法编译失败。
要获得项目范围的结果,请使用Analyze
| Inspect Code
具有适当的检查档案。
IDEA项目问题跟踪器中有similar feature request,但它似乎不太受欢迎(差不多2岁零投票)。