프로그래밍
thymeleaf 의 layout:decorate 가 동작하지 않을 때
tedhong
2023. 6. 5. 13:44
thymeleaf 의 layout:decorate 가 동작하지 않을 때는
보통 spring-boot-starter-thymeleaf 의존성 하나만 추가되어 있을 확률이 높습니다.
이 경우 thymeleaf-layout-dialect 의존성을 추가하면 잘 동작합니다.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
</dependency>