SpringBoot/프로젝트
[오류] org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [...]") 에러상황
PeepPeep!
2024. 1. 4. 16:55
프로젝트 수행 중 html 복붙을 하였는데 아래와 같은 오류가 발생하였다
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/item/createItemForm.html]") 에러상황

TemplateInputException: An error happened during template parsing 에러 내용을 검색해보니 html를 가져오는 중에 깨지는 것이라고 하여
[오류 해결 시도]
1. class간 연결관계에 문제가 있을 수 있으므로, 우선 creatItemform.html에서 복붙했던 코드를 지우고 <body>에 간단한 코드를 작성한뒤 다시 연결해보니 정상출력됨


2.복붙한 html에서 쓰는 필드명 오타난거 있나 확인
Bookform.java에서 저자 필드명 오타 확인


3. author 관련 코드 모두 수정

4.재실행

5. 해결
html를 복붙하였는데 왜 오류가 발생하는지 이해할 수 없었는데 결국 천천히 관련 코드를 보니 내가 직접 코딩하면서 발생한 오타 때문이였다.