일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Visual Studio 2015 삭제
- Selenium 환경
- vue3
- 프록시 예제
- .NET Core Proxy
- .NET Core
- 웹 크롤링
- Visual Studio 2015 강제 삭제
- tomcat
- spring
- Visual Studio 2015 설치
- javascript
- 업무 자동화
- SQLP
- Visual Studio 강제 삭제
- Nginx Reverse Proxy
- vue
- MSSQL 문자열
- Selenium 설치
- 리버스 프록시 예제
- Tomcat Error
- 웹 자동화
- Vue3 configureWebpack
- Visual Studio 재설치
- Vue.config
- Visual Studio 패키지에 실패했습니다.
- MSSQL 동적 쿼리
- Vue configureWebpack
- 디자인 패턴 사례
- vue.js
- Today
- Total
금백조의 개발 블로그
[Spring]타일즈(Tiles) 페이지별 CSS 동적으로 적용하기 본문
서론
기존에 진행하던 Spring 사이드 프로젝트에 jsp페이지별 소스 재활용도를 높이기 위해 타일즈(Tiles)를 적용했습니다. 그러던 중 페이지별로 css를 다르게 적용하기 위한 방법을 찾아야 했습니다. 오늘은 그 방법에 대해 포스팅해볼까 합니다.
본론
1. tiles.xml에 css를 동적으로 적용할 put-attribute 태그의 속성을 설정합니다.
(name = "dynamic_css", value = "/resources/assets/css/{2}.css")
home.jsp로 예시를 들면 home.jsp가 /WEB-INF/views/board 경로에 있고 HomeController의 리턴 값이 "board/home" 이므로 {1} 에는 board, {2}에는 home 이 들어가게 됩니다. home.css 는 /resources/assets/css 경로에 위치하게 됩니다.
[tiles.xml]
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 3.0//EN" "http://tiles.apache.org/dtds/tiles-config_3_0.dtd">
<tiles-definitions>
<definition name="default_main" templateExpression="/WEB-INF/views/tiles/layout.jsp">
<put-attribute name="css" expression="/WEB-INF/views/tiles/css.jsp" />
<put-attribute name="script" expression="/WEB-INF/views/tiles/script.jsp" />
<put-attribute name="header" expression="/WEB-INF/views/tiles/header.jsp" />
<put-attribute name="footer" expression="/WEB-INF/views/tiles/footer.jsp" />
</definition>
<definition name="*/*" extends="default_main">
<put-attribute name="dynamic_css" value="/resources/assets/css/{2}.css"/>
<put-attribute name="title" value="{2}"/>
<put-attribute name="body" value="/WEB-INF/views/{1}/{2}.jsp"/>
</definition>
</tiles-definitions>
[home.css 경로]
[HomeController.java]
@Controller
public class HomeController {
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home() {
return "board/home";
}
}
2. 적용할 layout.jsp 페이지에 아래 코드를 추가합니다.
<link rel="stylesheet" href="${contextpath}<tiles:getAsString name = "dynamic_css"/>"/>
[layout.jsp]
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%>
<c:set var = "contextpath" value = "<%=request.getContextPath()%>"/>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<tiles:insertAttribute name="css" />
<link rel="stylesheet" href="${contextpath}<tiles:getAsString name = "dynamic_css"/>"/>
<title><tiles:getAsString name = "title"/></title>
</head>
<body>
<tiles:insertAttribute name="header" />
<div id="content">
<tiles:insertAttribute name="body" />
</div>
<tiles:insertAttribute name="footer" />
</body>
<tiles:insertAttribute name="script" />
</html>
이 방법을 사용하면 홈 화면인 home.jsp에는 home.css가 다른 화면인 other.jsp 에는 other.css를 적용할 수 있습니다. 따라서 각 페이지별로 원하는 css를 다르게 적용할 수 있습니다.
결론
위 방법을 사용하면 css 뿐만 아니라 다른 것들도 (javascript, html 태그 값 등...) 페이지 별로 동적으로 적용할 수 있습니다. Spring에서 Tiles Library를 사용하신다면 언젠가는 사용하게 될 유용한 방법이라고 생각합니다! 위 예시의 자세한 코드는 아래 Github 프로젝트 링크에서 확인하실 수 있습니다.
https://github.com/GoldSwan/PictureRepository
Reference
[Spring + tiles 설정]
https://matchless.tistory.com/6
[[Spring] 스프링 tiles 사용하기!]
[[Spring/Tiles] Apache Tiles3, CSS, JS 페이지별 동적로딩 구현하기]
https://everyflower.tistory.com/211