当前位置:编程学习 > JS >>

jsp自定义标签封装jqGrid

 jsp标签技术非常实用,这不,才到公司实习就用到了。我是用一个jsp标签封装了jqGrid(jQuery的一个表格插件)通过一个select语句就能自动构建表格,并能从数据库中取得参数。整个小架构就不发出来了,因为我把jqGrid表格进行了二次封装,如果又想要的,可以留言哈。下面主要讲的是jsp自定义标签的用法。
 
一、写一个tag的解析类 要继承TagSupport类,复写 doStartTag()或者doEndTag就行了。
package com.lubby.tag;
import java.io.IOException;
import java.util.Properties;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;
import org.apache.struts2.ServletActionContext;
import com.lubby.util.PropertiesUtil;
import com.opensymphony.xwork2.ActionContext;
 
public class jqgrid extends TagSupport {
private String sql;
@Override
public int doEndTag() throws JspException {
try {
PropertiesUtil.setProperties(sql);
System.out.println(sql);
pageContext.getOut().print("<div id=\"content\"><table id=\"gridTable\" ></table><div id=\"gridPager\" 
style=\"height:40px\" ></div></div>");
} catch (IOException e) {
e.printStackTrace();
}
return EVAL_PAGE;
}
public void setSql(String sql) {
this.sql = sql;
}
public String getSql() {
return sql;
}
}
 
二、建立tld文件  (tld的taglib有两种引用,我用的是不用再web.xml配置的那种)
 
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd">
    <description><![CDATA["To make it easier to access dynamic data;"]]></description>
    <display-name>Permission Tags</display-name>
    
    <tlib-version>1.0</tlib-version>
    <short-name>lubby</short-name>
    <uri>www.lubby.com</uri> //在声明标签的时候使用
   
 <tag>
        <name>jqgrid</name>     //在jsp中标签名
        <tag-class>com.lubby.tag.jqgrid</tag-class>  //标签的解释类
        <body-content>empty</body-content>     //没有body体
        <attribute> //设置参数
            <name>sql</name> //参数名为sql
            <required>true</required> //参数是必须提供的
            <fragment>true</fragment>
        </attribute>
    </tag>
    </taglib>
 
三、在页面上使用标签
1.声明标签
<%@ taglib prefix="s" uri="www.lubby.com"%>
2.使用标签
<s:jqgrid sql = "select t1.id as 编号 ,t1.bussiness as 业务类型 ,t1.customer as 手机号码 ,t1.brand as 品牌 from info t1" />
3.客户端访问时生成的代码是:
 
<div id="content"><table id="gridTable" ></table><div id="gridPager" style="height:40px" ></div></div>
 
需要注意的是:jsp自定义标签的原理:jsp最终会转化为servlet,自定义标签也会转化为servlet里面执行代码,servlet会返回给客户端html代码,
客户端(游览器)解释所接收到的html代码。自定义标签由应用服务器转化成html代码。客户端访问的实际上是已经转化的html页面。
 
补充:Web开发 , Jsp ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,