# 이전에 멀쩡했던 사이트에서 다름과 같은 오류가 발생하는 경우라면 아래처럼 해결 가능하다.
[THYMELEAF][http-nio-80-exec-2][layouts/layout1] Deprecated unwrapped fragment expression "fragments/header::header" found in template layouts/layout1, line 24, col 6. Please use the complete syntax of fragment expressions instead ("~{fragments/header::header}"). The old, unwrapped syntax for fragment expressions will be removed in future versions of Thymeleaf.
위의 문제는 아래처럼 변경해서 해결한다.
<div th:replace="~{fragments/header::header}"></div>
<div layout:fragment="content" class="content">
</div>
<div th:replace="~{fragments/footer::footer}"></div>