naver / arcus-spring

ARCUS as a caching provider for the Spring Cache Abstraction
Apache License 2.0
26 stars 16 forks source link

FEATURE: Add @Nullable annotation on SimpleStringKeyGenerator generate method for support JSR-305 #61

Closed kiheyunkim closed 11 months ago

kiheyunkim commented 11 months ago

Spring5부터 @NonNullApi를 통해 검사되고 있는 Jsr-305지원하도록 @Nullable 어노테이션을 추가합니다.

실제로 SimpleStringKeyGenerator에서는 target, method는 사용되지 않아서 Wrapper Class를 만들어 쓰는 경우 null을 주입해야하나, 어노테이션이 없어서 스프링에서 사용시 NonNull로 판단되어 코틀린에서 사용시 freeCompilerArgs = listOf("-Xjsr305=strict")지정시 컴파일 오류가 발생합니다.

따라서 해당 클래스에 Nullable어노테이션을 추가하고자합니다.