1. build.gradle 의존성 추가타임리프 레이아웃 기능을 사용하려면 thymeleaf-layout-dialect가 필수임. 없으면 layout:decorate 속성이 무시됨.dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'2. 기본 레이아웃 HTML 설정레이아웃 파일(부모)에서 xmlns:layout 선언과 CSS 경로 설정이 ..