
애플리케이션 실행은 되는데 위와 같은 에러가 발생하였다.
해결이 아주 쉬운 에러다.
JR305를 추가 해주면 된다고 한다.
build.gradle 에
implementation 'com.google.code.findbugs:jsr305:3.0.2'
를 추가해주면 된다.
pom.xml 에
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>3.0.1</version>
</dependency>
를 추가해주면 된다.