http://www.opensymphony.com/sitemesh/
1. 3.0 버전
Homepage : http://www.sitemesh.org/
Download : http://github.com/sitemesh/sitemesh3/downloads
Document : http://www.sitemesh.org/configuration.html
2. 2.4.2 버전 이하
Download : https://java.net/downloads/sitemesh/
Document : http://pratinas.net/wiki/SiteMesh
/WEB-INF/web.xml
<filter> <filter-mapping> |
/WEB-INF/sitemesh.xml
<?xml version="1.0" encoding="UTF-8" ?> <mapper class="com.opensymphony.module.sitemesh.mapper.FrameSetDecoratorMapper"> <mapper class="com.opensymphony.module.sitemesh.mapper.AgentDecoratorMapper"> <mapper class="com.opensymphony.module.sitemesh.mapper.PrintableDecoratorMapper"> <mapper class="com.opensymphony.module.sitemesh.mapper.RobotDecoratorMapper"> <mapper class="com.opensymphony.module.sitemesh.mapper.ParameterDecoratorMapper"> <mapper class="com.opensymphony.module.sitemesh.mapper.FileDecoratorMapper"> <mapper class="com.opensymphony.module.sitemesh.mapper.ConfigDecoratorMapper"> |
/WEB-INF/config/decorators.xml
<?xml version="1.0" encoding="UTF-8" ?> <excludes> </decorators> |
/WEB-INF/views/common/decorators/default.jsp
<?xml version="1.0" encoding="UTF-8" ?> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html version="-//W3C//DTD XHTML 1.1//EN" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/1999/xhtml http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>[:: <decorator:title default="프로젝트" /> ::]</title> <decorator:head /> </head> <body> <h1>Header</h1> <decorator:body /> <h2>Footer</h2> </body> </html> |