kotlin 환경에서 redisHash entity id field val로 선언 시 발생하는 오류
Short description 아래의 간단한 API를 테스트하던 중, 갑작스러운 500 오류가 발생했습니다. override fun checkCode(email: String, code: String): Boolean { if (codeRepository.findByEmail(email).orElse(null)?.code == code) return true return false } framework.data.keyvalue.core.UncategorizedKeyValueException: No accessor to set property @org.springframework.data.annotation.Id()private final java.lang.String com.we.webackend.do..