front/HTML, CSS

[thymeleaf] null 값이 있으면 500 에러 나옴.

배고파요 2024. 7. 9. 16:43
728x90

 

📍 에러 내용

  • org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'title' cannot be found on null
<div>

    <h1 th:text="${postDTO.title}"></h1>

</div>

 

 

 

📍 postDTO에 값이 없을 수도 있잖아?

<h1 th:text="${postDTO?.title}"></h1>

 

이렇게 수정하면 됨.


출처 : 

https://pika-chu.tistory.com/675

 

 

 


개발 공부를 위한 블로그 입니다. 

오류가 있다면 댓글로 알려주세요! 

감사합니다.

728x90