Spring Boot

[SpringBoot] thymeleaf layout-dialect 에러

dy8_8 2022. 12. 22. 23:38
728x90

[THYMELEAF][http-nio-8080-exec-1][thymeleaf/home.html] Deprecated unwrapped fragment expression 
"/thymeleaf/fragments/header.html :: fragment-header" found in template 
thymeleaf/home.html, line 8, col 13. Please use the complete syntax of fragment expressions 
instead ("~{/thymeleaf/fragments/header.html :: fragment-header}"). 
The old, unwrapped syntax for fragment expressions will be removed in future versions of Thymeleaf.

 

안 보이던 에러가 어느순간 나타났다.

이유는 replace의 경로를 잘 못 지정해서 변경하라고 나는 에러 문구였다.

 

[변경 전]

<header th:replace="/thymeleaf/fragments/header.html :: fragment-header"></header>

 

[변경 후]

<header th:replace="~{/thymeleaf/fragments/header.html :: fragment-header}"></header>