我正在使用apache tiles3,我有一个带有默认空属性的经典布局:
<definition name="t-empty" template="/WEB-INF/tiles/template/empty.jsp"/>
//the base template is the site,
<definition name="base" template="/WEB-INF/tiles/layout/classic.jsp">
<put-attribute name="res" value="t-empty"/>
<put-attribute name="header" value="t-empty"/>
<put-attribute name="body" value="t-empty"/>
<put-attribute name="footer" value="t-empty"/>
</definition>
作为shon,有一个名为res
的属性,这意味着静态的javascript或css或内联样式。
对于javascript,我可以直接在拼贴中添加它们,但是对于css或内联样式,它们会被添加到head
部分中,这就是我添加res
占位符的原因
现在我有一个可以使用bootstrape和骨干库的布局,所以我这样定义:
<definition name="single-page-bb" extends="base">
<put-attribute name="header" value="/WEB-INF/tiles/template/header.jsp"/>
<put-list-attribute name="res">
<add-attribute value="/WEB-INF/tiles/template/res/jquery.jsp"/>
<add-attribute value="/WEB-INF/tiles/template/res/backbone.jsp"/>
</put-list-attribute>
</definition>
然后,对于一个conrete页面,我将放置所有必需的属性,以及它自己的资源,如果有的话:
<definition name="user-list-page" extends="single-page-bb">
<put-attribute name="header" value="/WEB-INF/tiles/fragment/user-list.jsp"/>
<put-list-attribute name="res" inherit="true">
<add-attribute value="/WEB-INF/tiles/fragment/user-list-res.jsp"/>
</put-list-attribute>
</definition>
请参阅jsps:http://i.stack.imgur.com/qYAdM.png
它有效,但我发现这很不方便,因为我必须将user-list
页面的资源放在页面之外。
我想知道是否可以将资源放在tile user-list
中?
答案 0 :(得分:0)
如果我正确理解了问题 - 问题的核心是put-list-attribute 值被视为String。这意味着,我们无法使用tiles:insertAttribute标记。我通过在顶部使用tiles:importAttribute完成它,然后通过c标签和表达式语言(el)遍历列表。
另见Tiles 3 how to reference another definition in put-attribute
<强> baseLayout.jsp 强>
记下c:forEach
中的链接和脚本标记<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
<%@ taglib prefix="tilesx" uri="http://tiles.apache.org/tags-tiles-extras" %>
<tiles:importAttribute name="styles" />
<tiles:importAttribute name="scripts" />
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >
<title><tiles:getAsString name="title" /></title>
<c:forEach items="${styles}" var="style" >
<link rel="stylesheet" type="text/css" href="<c:url value='${style}' />" />
</c:forEach>
</head>
<body>
<header id="header">
<tiles:insertAttribute name="header" />
</header>
<section id="body">
<tiles:insertAttribute name="body" />
</section>
<footer id="footer">
<tiles:insertAttribute name="footer" />
</footer>
<c:forEach items="${scripts}" var="script" >
<script src="<c:url value="${script}"/>"></script>
</c:forEach>
</body>
</html>