본문 바로가기
프로그래밍/SpringBoot

[SpringBoot] static폴더와 templates

by 소소로드 2019. 1. 13.


우선, 스프링부트에서는 thymeleaf라는 템플릿을 사용해

html파일을 불러오고 있었다.


pom.xml 

<!-- thymeleaf 설정 -->

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-thymeleaf</artifactId>

</dependency>



큰 서비스가 아니라 그저 html을 띄웠으면 하는데(정적 파일) 

그러기위해서 나는 templates폴더에 넣어서 바보처럼 하나하나 컨트롤러에 매핑시켰고

그런 수고가 필요없다는 걸 나중에 알았다.

static이라는 폴더에 css, js, image를 포함한 html을 넣어두니 매핑없이도 올릴 수 있다는 이야기.