1
我試圖用apache瓦片建立一個web應用程序。 我使用apache瓦片V3與通配符支持。Apache瓦片V3包含在子頁面
我tiles.xml看起來就象這樣:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!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="*" template="/resources/tiles/main-layout.jsp">
<put-attribute name="main" value="/resources/templates/{1}.jsp" />
<put-attribute name="head-content" value="" />
</definition>
<definition name="*/*" template="/resources/tiles/main-layout.jsp">
<put-attribute name="main" value="/resources/templates/{1}/{2}.jsp" />
<put-attribute name="head-content" value="" />
</definition>
<definition name="*/*/*" template="/resources/tiles/main-layout.jsp">
<put-attribute name="main" value="/resources/templates/{1}/{2}/{3}.jsp" />
<put-attribute name="head-content" value="" />
</definition>
</tiles-definitions>
我有一個主頁(主layout.jsp)與頭部分和內容部分。
頭部分:
<head>
<link rel="stylesheet" type="text/css" href="${baseCss}" />
<link rel="stylesheet" type="text/css" href="${messages}" />
<script src="${jquery}"></script>
<script src="${jqueryui}"></script>
<script src="${jquerycookie}"></script>
<script src="${languagetoggle}"></script>
<script src="${menuJs}"></script>
<tiles:insertAttribute name="head-content" />
</head>
主要部分:
<section class="main-content">
<tiles:insertAttribute name="main" />
</section>
我的主要部分呈現正確。我可以使用Spring MVC從/hello/world
加載文件world.jsp
並從de hello
文件夾加載。
不,我想添加一些額外的CSS文件頭。 我的問題是:我怎麼能從de world.jsp文件做到這一點?
我已經嘗試從world.jsp文件中添加磚屬性,並加載它:
<tiles:putAttribute name="head-content">
<spring:url value="/resources/base-theme/css/tables.css" var="tableCss" />
<link rel="stylesheet" type="text/css" href="${tableCss}">
</tiles:putAttribute>
但它不工作。當我谷歌我總是在相同的頁面上,在每個頁面得到指定tiles.xml
,但從瓦片V3通配符支持它不再需要。有人能給我一個提示如何完成它嗎?