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
'front > HTML, CSS' 카테고리의 다른 글
[thymeleaf] 템플릿 조각 (layout) (0) | 2024.07.10 |
---|---|
[html] 한줄 띄우기 코드 (0) | 2024.02.26 |
[CSS] 일,월에만 다른 색깔 :: td:nth-child(7n) (0) | 2023.12.19 |
[jstl] 앞에 숫자 붙이기 (0) | 2023.12.05 |
[JS & CSS] 클릭 시, 천천히 나타나기 효과 (0) | 2023.05.24 |