如何使用 Tiles 进行类似 Facelets 的模板合成?
我正在使用 Spring、JSP 和 Tiles 做一个 Java Web 项目。在上一个项目中,我们使用 Facelets
和
标签将 JS 和 CSS 库包含在模板的标头中。我想知道是否有办法使用 Tiles 来做同样的事情。
以下是我想要执行的 Facelets 主模板示例:
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:sec="http://www.springframework.org/security/facelets/tags">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta>
<title><ui:insert name="title">MediMercado</ui:insert></title>
<link href="${request.contextPath}/css/layout.css" rel="stylesheet" type="text/css" />
<ui:insert name="additional-js"></ui:insert>
</head>
<body>
<ui:insert name="content">
<ui:include src="main-content.xhtml"/>
</ui:insert>
</body>
</html>
页面模板:
<ui:composition template="/layout/layout.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets">
<ui:define name="additional-js">
<script src="${request.contextPath}/js/jquery.js" type="text/javascript"></script>
</ui:define>
<ui:define name="content">
<h1>Just an example</h1>
</ui:define>
</ui:composition>
因此,在此示例中,页面模板中的 jquery 库包含在主模板的 HTML 头中。
我们如何使用 Tiles 来做到这一点?
I'm doing a Java Web Project using Spring, JSP and Tiles. In our last project we have used Facelets <ui:composition>
and <ui:define>
tags to include JS and CSS libraries in the header of a template. I'm wondering if there is a way to do the same using Tiles.
Here's an example of the Facelets master template what I'm trying to do:
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:sec="http://www.springframework.org/security/facelets/tags">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta>
<title><ui:insert name="title">MediMercado</ui:insert></title>
<link href="${request.contextPath}/css/layout.css" rel="stylesheet" type="text/css" />
<ui:insert name="additional-js"></ui:insert>
</head>
<body>
<ui:insert name="content">
<ui:include src="main-content.xhtml"/>
</ui:insert>
</body>
</html>
Page template:
<ui:composition template="/layout/layout.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets">
<ui:define name="additional-js">
<script src="${request.contextPath}/js/jquery.js" type="text/javascript"></script>
</ui:define>
<ui:define name="content">
<h1>Just an example</h1>
</ui:define>
</ui:composition>
So in this example the jquery library in our page template is been included in the HTML head of the master template.
How can we do this using Tiles?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tiles 教程涵盖了这个主题。
(提示:在 Tiles 中,文件比在 JSF 中更加分离)
The Tiles Tutorial cover this theme.
(Hint: In Tiles the files are more separated than in JSF)