본문 바로가기
Study_Framework

[Spring] Thymeleaf 설정(Layout 포함)

by 타블로 2018. 12. 7.

 

 

1. Maven 추가

<!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf -->

  <dependency>
   <groupId>org.thymeleaf</groupId>
   <artifactId>thymeleaf</artifactId>
  </dependency>

  <!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring5 -->
  <dependency>
   <groupId>org.thymeleaf</groupId>
   <artifactId>thymeleaf-spring5</artifactId>
  </dependency>

  <!-- https://mvnrepository.com/artifact/nz.net.ultraq.thymeleaf/thymeleaf-layout-dialect -->
  <dependency>
   <groupId>nz.net.ultraq.thymeleaf</groupId>
   <artifactId>thymeleaf-layout-dialect</artifactId>
  </dependency>

 

 

2. application.properties 수정

 

spring.mvc.view.prefix=/
spring.mvc.view.suffix=.html

 

 

3. Controller 추가

 

 

 

4 View 파일 추가

templates.zip
다운로드

 

 

 

http://ebom.tistory.com/entry/Thymeleaf-%EC%84%A4%EC%A0%95Layout-%ED%8F%AC%ED%95%A8