Troubleshooting

TroubleShooting: warning: unknown enum constant When.MAYBE

DuL2 2023. 3. 10. 12:05

TroubleShooting

발생한 문제

의존 관계 주입 관련 테스트를 진행하다가 Spring console에서 평소에는 보지 못한 warning이 보여 찾아보았다.

 

해결 및 시도 방법

  1.  구글링

 

-> @Nullable 이 열거형을 사용하는데 자동으로 사용하도록 되어있지 않아서 뜨는 문제라고 함.

 

https://stackoverflow.com/questions/53326271/spring-nullable-annotation-generates-unknown-enum-constant-warning

 

Spring nullable annotation generates unknown enum constant warning

In my app, whenever I add @Nullable (which imports from org.springframework.lang.Nullable) to any of the fields, I get a build warning: Warning:java: unknown enum constant javax.annotation.meta...

stackoverflow.com

 

세부사항 변화

수정

경고 표시 제거

회고

google bug find repo가 있다는게 신기했다.

 

https://github.com/findbugsproject/findbugs

 

GitHub - findbugsproject/findbugs: The new home of the FindBugs project

The new home of the FindBugs project. Contribute to findbugsproject/findbugs development by creating an account on GitHub.

github.com