본문 바로가기
반응형
Front-End/Thymeleaf

thymeleaf html layout:decorate 적용안됨

by brightGarden02 2022. 12. 2.

 

<html layout:decorate="~{layout}" xmlns:layout="http://www.w3.org/1999/xhtml">

signup_form.html 상단에 layout 적용을 하였다.

 

그런데

layout 적용이 안됬다.

 

 

 

이유는 build.gradle 파일에 thymeleaf-layout-dialect 라이브러리가 빠져있어서였다.

dependencies {
   implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'

 

 

아래와 같이 라이브러리 추가후

dependencies {
   implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
   implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'

 

 

 

layout이 잘 적용되었다.

댓글


반응형
반응형