快速业务通道

strtus之Titles框架应用 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17

strtus之Titles框架应用

时间:2011-04-09

Tiles框架建立在JSP的include指令的基础上,但它提供了比JSP的include指令更强大的功能。

Tiles框架具有如下特性:

- 创建可重用的模板

- 动态构建和装载页面

- 定义可重用的Tiles组件

- 支持国际化

Tiles框架包含以下内容:

- Tiles标签库

- Tiles组件的配置文件

- TilesPlugIn插件

Tiles标签库的<tiles:insert>标签和JSP include指令具有相同的功能,也能把其他的JSP

页面插入到当前页面中。例如,以下两条语句的作用是相同的:

<jsp:include page="indexContent.jsp"/>

<tiles:insert page="indexContent.jsp" flush="true"/>

<tiles:insert>标签的page 属性指定被插入的JSP 文件;flush属性的可选值包括true 和

false。当flush的属性值为true时,表示在执行插入操作之前,先调用当前页面的输出流的

flush()方法。

开发步骤

(1)安装Tiles标签库所需的文件。

以下文件必须位于WEB-INF/lib 目录中:

l struts.jar l commons-digester.jar l commons-beanutils.jar l commons-collections.jar l commons-logging.jar

此外,应该把Tiles标签库的定义文件struts-tiles.tld拷贝到WEB-INF目录下。

(2)在web.xml文件中配置如下<taglib>元素:

<taglib> <taglib-uri>/WEB-INF/struts-tiles.tld</taglib-uri> <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location> </taglib>

strtus之Titles框架应用(2)

时间:2011-04-09

(3)创建index.jsp和product.jsp文件。

修改16.2 节的例程16-8(index.jsp)和例程16-9(product.jsp),在index.jsp和product.jsp

文件的开头,通过<%@ taglib>指令引入Tiles标签库,然后把源代码中的JSP include指令

改为<tiles:insert>标签.

index.jsp

<%@ page contentType="text/html; charset=UTF-8" %> <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %> <html> <head> <title>TilesTaglibs Sample</title> </head> <body > <%-- One table lays out all of the content for this page --%> <table width="100%" height="100%"> <tr> <%-- Sidebar section --%> <td width="150" valign="top" align="left" bgcolor="#CCFFCC"> <tiles:insert page="sidebar.jsp" flush="true"/> </td> <%-- Main content section --%> <td height="100%" width="*"> <table width="100%" height="100%"> <tr> <%-- Header section --%> <td valign="top" height="15%"> <tiles:insert page="header.jsp" flush="true"/> </td> <tr> <tr> <%-- Content section --%>

例程16-11 product.jsp

<%@ page contentType="text/html; charset=UTF-8" %> <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %> <html> <head> <title>TilesTaglibs Sample</title> </head> <body > <%-- One table lays out all of the content for this page --%> <table width="100%" height="100%"> <tr> <%-- Sideba

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号