본문 바로가기
Develop/Trouble Shooting

Spring) @Nullable 어노테이션 사용 시, 에러 해결

by jaeyoungb 2022. 10. 23.

Spring project 진행 중에 @Nullable 어노테이션을 사용할 일이 있었다.

 

콘솔 창 에러 화면

 

'javax.annotation.meta.When not found' 으로 구글링을 해본 결과, 해결책은 다음과 같았다.

 

build.gradle 파일 클릭  →
dependencies 부분에 implementation 'com.google.code.findbugs:jsr305:3.0.2' 입력 후 reload

 

 

 

Ref)

https://velog.io/@saintho/javaxannotationmetawhennotfound