728x90
문제
attempted to return null from a method with a primitive return type (boolean)
방금 개발을 하다가 이처럼 에러가 났다. 내가 반환하려고 하는 타입은 boolean 인데 null 로 반환되었기 때문에 이러한 에러가 발생했다.
해결
null 값도 받을 수 있는 Wrapper Class 를 사용하면 된다.
그래서 return type인 boolean 을 Boolean 으로 바꿔주었다. 정상적으로 동작한다.
느낀 점
자바의 기초를 다져놓고 스프링을 하니까 뭔가 많이 편하고 더 알아가는 것과 느끼는 것이 많아서 좋다 ㅎㅎ
다시 한번 기초가 중요하다는 것을 느꼈다!
'난중(개발)일기 > 삽질기록' 카테고리의 다른 글
[MyBatis] Error attempting to get column 'id' from result set (0) | 2022.09.06 |
---|---|
[MyBatis] org.apache.ibatis.binding.BindingException: Parameter 'email' not found. Available parameters are [arg1, arg0, param1, param2 (0) | 2022.09.05 |
[MyBatis] invalid bound statement (not found) 에러 (0) | 2022.09.04 |
[jsp] 한글 깨짐 현상 (0) | 2022.08.10 |
java: package springfox.documentation.spi does not exist (0) | 2022.08.10 |