
mustache 템플릿 설정
2022. 11. 18. 16:28
스프링
라이브러리 추가 스프링부트 버전과 동일한 머스테치 라이브러리 의존성을 등록해준다. implementation 'org.springframework.boot:spring-boot-starter-mustache:2.7.5' https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-mustache/2.7.5 설정파일 생성 현재 머스테치는 .mustache 파일을 인식하게 되어있다. 머스테치가 .html 파일을 인식할 수 있도록 별도의 설정파일을 만들어준다. package com.example.mustache.config; import org.springframework.boot.web.servlet.view.MustacheV..