반응형
springboot tiles
-
Spring Boot | Tiles (타일즈) 적용하기▼ Backend/스프링 (Spring) 2021. 6. 30. 15:28
▶ Tiles 란? 웹 페이지의 상단(Header)이나 하단(Footer)과 같이 반복적으로 사용되는 부분들에 대한 코드를 분리하여, 한 곳에서 관리를 가능하게 해 준다. 1. pom.xml javax.servlet jstl org.apache.tiles tiles-jsp 3.0.7 2. WebConfig.java package com.sample.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import..