본문 바로가기
Error & Fix

Thymeleaf EL1001E: Type conversion problem, cannot convert from null to boolean 에러 해결방법

by wakestand 2023. 1. 9.
반응형
<td th:text="${!status} ? '활성화' : '비활성화'"></td>

 

에러가 발생하는 내용은 HTML에서 Thymeleaf 를 사용하여

status에 true 혹은 false가 들어오는 값에 따라

'활성화' 혹은 '비활성화' 를 노출시키려고 했는데

 

EL1001E: Type conversion problem, cannot convert from null to boolean

실제 해당 페이지 접근 시 이런 에러가 발생하더라

확인해보니 Controller에서 status에 null이 들어가고 있어

null을 boolean으로 변환할 수는 없기 때문에

에러가 발생한 것이었고

 

Controller 부분을 수정해서

NULL이 아닌 true, false 같은 boolean이 들어가게 하니

에러가 깔끔하게 해결이 되었다

반응형

댓글