博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jsp:attribute
阅读量:5077 次
发布时间:2019-06-12

本文共 1363 字,大约阅读时间需要 4 分钟。

在传统 JSP 中,想要实现页面布局管理比较麻烦,为了解决在 JSP 中布局的问题,出现了很多开源软件,比如 Apache Tiles 和 SiteMesh 就是其中比较优秀的。但是使用开源软件实现布局或多或少会产生一些性能问题,有没有办法在不依赖第三方开源软件的情况下,使用 JSP 本身来实现页面布局呢? 

JSP 2.0 引入了 Fragment 技术,使用 Fragment 技术可以在 JSP 中实现类似 Tiles 和 SiteMesh 的页面布局管理。 
下面的例子说明了如何使用 Fragment 实现页面布局。 
1、首先在 WEB-INF/tags 文件夹中创建 template.tag 文件:

 

[html]   
 
  1. <%@tag description="template 1" pageEncoding="UTF-8"%>  
  2. <%@attribute name="header" fragment="true" %>  
  3. <%@attribute name="footer" fragment="true" %>  
  4. <!DOCTYPE html>  
  5. <html>  
  6.   <head>  
  7.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  8.   </head>  
  9.   
  10.   <body>  
  11.     <jsp:invoke fragment="header"/>  
  12.     <jsp:doBody/>  
  13.     <jsp:invoke fragment="footer"/>  
  14.   </body>  
  15. </html>  

在 tag 文件头部申明了两个 attribute 分别是 header 和 footer。在 <body> 标签中调用了这两个 attribute 所对应的 fragment。jsp:invoke 和 jsp:doBody 中的具体内容会被 jsp 中的内容替换。现在编写 index.jsp。

 

2、创建 index.jsp 文件

 

[html]   
 
  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>  
  2. <%@ taglib prefix="t" tagdir="/WEB-INF/tags/"%>  
  3. http://write.blog.csdn.net/postedit  
  4. <t:template>  
  5.   <jsp:attribute name="header">  
  6.     这里的内容显示在头部。  
  7.   </jsp:attribute>  
  8.   <jsp:attribute name="footer">  
  9.     这里的内容显示在尾部。  
  10.   </jsp:attribute>  
  11.   <jsp:body>  
  12.     这里显示正文内容:Hello World!  
  13.   </jsp:body>  
  14. </t:template>  

jsp:attribute 标签中的内容将会替换 template.tag 中 jsp:invoke 的内容,name 属性对应 fragment 属性。 

如果访问 index.jsp 页面,可以看到显示的内容会按照 template.tag 中设计的样式来进行布局。

转载于:https://www.cnblogs.com/developer-ios/p/5734960.html

你可能感兴趣的文章
confuluence wiki , jira, gitlab, bootstrapvaildtor
查看>>
linux IP 设置
查看>>
ajax中Get与Set区别
查看>>
mybatis-config.xml
查看>>
作业2
查看>>
Instruction on how to turn off Nisan engine warning light
查看>>
对比MySQL,你究竟在什么时候更需要MongoDB(转载)
查看>>
Centos7 yum install vim 出现“could not retrieve mirrorlist”
查看>>
3中断和异常
查看>>
[转]tx:advice标签简介
查看>>
spring的下载地址(转)
查看>>
modelsim 仿真clk,rst_n时出现Hiz
查看>>
Apache 配置文件管理
查看>>
易语言支持库 找不到指定的命令/子程序/Dll命令调用名称“取特定目录”。...
查看>>
test
查看>>
什么是IP核
查看>>
中位数的求法
查看>>
微软重建社区
查看>>
Vuejs 安装与配置
查看>>
对接口执行100次震荡的脚本
查看>>