問題
我們使用@Nullable 注釋消除NullPointerExceptions。但是javax.annotation.Nullable 導(dǎo)入@Nullable 報錯拍嵌,找不到符號遭赂,并且javax下面并沒有@Nullable注解。
解決方法
https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
添加jsr305依賴
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>