在javax.annotation中找不到@ Nullable。*
我想使用@Nullable
注释消除NullPointerExceptions
。我在网上找到了一些教程,我注意到这个注释来自软件包javax.annotation.Nullable
;但是当我导入它时,会生成一个编译错误:找不到符号
回答:
您需要包括一个存在该类的罐子。您可以在这里找到它
如果使用Maven,则可以添加以下依赖项声明:
<dependency> <groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
对于Gradle:
dependencies { testImplementation 'com.google.code.findbugs:jsr305:3.0.2'
}
以上是 在javax.annotation中找不到@ Nullable。* 的全部内容, 来源链接: utcz.com/qa/427205.html