<html layout:decorate="~{layout}" xmlns:layout="http://www.w3.org/1999/xhtml">
I applied a layout at the top of signup_form.html
But
The layout didn't work.
Because thymeleaf-layout-dialect library was missing.
There was just spring-boot-starter-thymeleaf library.
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
Added the library
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
Layout worked!!
댓글