自己写的taglib例子

自己写了一个获取当前时间的标签
java:
/*
* Created on 2005-1-5
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.mindo.taglibs;

import java.text.SimpleDateFormat;
import java.util.Calendar;

import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspTagException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.TagSupport;

import org.apache.taglibs.standard.lang.support.ExpressionEvaluatorManager;

/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class CurrentDay extends TagSupport {
public int doStartTag() throws JspTagException

{


return SKIP_BODY;

}

public int doEndTag() throws JspTagException

{
JspWriter out = pageContext.getOut();

try

{

out.println(new SimpleDateFormat(formatKey.toString()).format(Calendar
.getInstance().getTime()));

}

catch (Exception e)

{

}
return EVAL_PAGE;

}

public void release()

{

super.release();

}

private Object formatKey="yyyy-MM-dd";

public void setFormatKey(Object formatKey) throws JspException {
if (formatKey != null) {
this.formatKey = ExpressionEvaluatorManager.evaluate("formatKey",
formatKey.toString(), Object.class, this, pageContext);
} else {
this.formatKey = "yyyy-MM-dd";
}
}

}

创建一个tlb文件
<?xml version="1.0" encoding="UTF-8"?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd" version="2.0">
<tlib-version>1.0</tlib-version>
<jsp-version>1.1</jsp-version>
<short-name>mdlee</short-name>

<tag>
<name>currentDay</name>
<tag-class>com.mindo.taglibs.CurrentDay</tag-class>
<body-content>empty</body-content>
<attribute>
<name>formatKey</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>

</taglib>
jsp页面中使用
<%@page contentType="text/html;charset=gbk" %>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ taglib uri="/WEB-INF/mdlee.tld" prefix="lee"%>
<html>
<head>
<title>Lomboz JSP</title>
</head>
<body bgcolor="#FFFFFF">

<lee:currentDay formatKey="yyyy-MM-dd"></lee:currentDay>

</body>
</html>

用过structs的都知道,在structs里面有很多标签,或许有些时候需要自己的标签,但是不知道如何去写,现在我就把自己的一点心得写出来.

首先,如果要自己写标签,要在web.xml里面声明,这样才能找到你所定义的标签.
<taglib>
<taglib-uri>XX.tld</taglib-uri>
<taglib-location>/WEB-INF/XX.tld</taglib-location>
</taglib>
你的tld文件就是标签文件,可以在JSP的页头引入,这样在你的JSP页面就可以使用你自己写的标签了,
<%@ taglib uri="XX.tld" prefix="XX"%>
当你在 JSP页头写上上述的代码后,就可以在页面上写
<XX:tagname 属性=>这样的代码了,下面我就说一下如何写.
比如 ,你要写一个标签,实现一些功能,你可以写一个类,这里我引用别人写的一个类:
SimpleTag根据指定的次数(times)进行循环并输出当前序号(sequence)。程序的结构比较简单,所有逻辑都在doTag方法中实现。
packageICW.taglib;
importjavax.servlet.jsp.JspException;
importjavax.servlet.jsp.tagext.SimpleTagSupport;
importjava.util.HashMap;
importjava.io.IOException;
publicclassIterationSimpleTagextendsSimpleTagSupport{
privateinttimes;
publicvoidsetTimes(int_times){
this.times=_times;
}
publicvoiddoTag()throwsJspException,IOException{
HashMapparams=newHashMap();
for(inti=0;i<times;i++){
params.put("sequence",String.valueOf(i+1));
getJspBody().invoke(null,params);
}
}
}
当你写好这个类之后 , 就可以在你的 tld 文件里面声明了 , 下面的例子仍然是别人的 , 为了学习 , 拿来研究了 , 呵呵 .
<?xmlversion="1.0"encoding="UTF-8"?>
<taglibxmlns="http://java.sun.com/xml/ns/i2ee"
xmlns:xsi="http://WWW.w3.org/2001/XMLSchema-instance"
xsl:schemaLocation="http://java.sun.com/xml/ns/j2eeweb-jsptaglihrary_2_0.xsd"
version="2.0">
<taglib>
<tiib-version>1.0</tlib-version>
<short-name>Jwadbooksimpletag</short-name>
<uri>/JwadSimpleTag</uri>
<description>SimpleTagHandler</description>
<tag>
<name>iteration</name>
<tag-class>ICW.taglib.IterationSimpleTag</tag-class>
<body-content>scriptless</body-content>
<description>IterationTag</description>
<variable>
<description>Currentiterationnumber</description>
<name-given>sequence</name—given>
</variable>
<attribute>
<name>times</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
</taglib>
注意其中的 <tag-class></tag-class>,这个里面的就是你先前写的类,即是你要实现功能的类,这样这个tld文件才能找到你要实现功能的代码.上面的一些属性基本都是差不多的,你也可以根据实际需要来确定,比如, <required>true</required> ,你可以设置为false,就变成了可选属性了,这个我会在介绍JSP页面的时候讲.
还有一个要注意的是 <attribute>< / attribute>
这个就是要用的标签 ,所以一个 <taglib> </taglib>里面可以有很多 <tag></tag> ,每个 <tag></tag> 里面放置一个 <attribute>< / attribute >.这样在JSP页面就有很多可以调用的标签了.
当你上面的都写好了的时候,就可以在JSP页面调用自己写的标签了,比如根据上面写好的,我们可以在JSP页面这样调用它:
首先 ,页头:
<%@ taglib uri=" iteration .tld" prefix=" iteration "%>
其实这个 prefix是由你自己决定的,你觉得怎么方便就怎么写,它只是关系到你页面调用时候怎么写而已.按照我这个写法,在下面调用的时候就可以写
< iteration : iteration times=输入值>
冒号前面的 iteration 是你的 prefix,冒号后面的 iteration 是你在 tld文件里面定义的标签名字.times就是你在tld文件里面为 iteration 这个标签定义的属性 ,当然了,属性可以有很多了,不过你自己定义的属性一定要在你的java文件里面有.
感觉看到这里应该可以明白了tag的写法了,当然了,要写出好的tag,也不是件容易的事情,这只是一个开头,可以尝试写一下啦,工作去了,就写这么多了.hoho
里面有些属性我没有详细介绍,可以去网上搜索一下.

你可能感兴趣的:(taglib)