tagSupport和bodytagsupport 的区别

1 TagSupport与BodyTagSupport的区别

TagSupport与BodyTagSupport的区别主要是标签处理类是否需要与标签体交互,如果不需要交互的就用TagSupport,否则如果不需要交互就用BodyTagSupport。

      交互就是标签处理类是否要读取标签体的内容和改变标签体返回的内容。

     用TagSupport实现的标签,都可以用BodyTagSupport来实现,因为BodyTagSupport继承了TagSupport。

2 doStartTag(),doEndTag()

    doStartTag()方法是遇到标签开始时会呼叫的方法,其合法的返回值是EVAL_BODY_INCLUDE与SKIP_BODY,前者表示将显示标签间的文字,后者表示不显示标签间的文字;doEndTag()方法是在遇到标签结束时呼叫的方法,其合法的返回值是EVAL_PAGE与 SKIP_PAGE,前者表示处理完标签后继续执行以下的JSP网页,后者是表示不处理接下来的JSP网页

     doAfterBody(),这个方法是在显示完标签间文字之后呼叫的,其返回值有EVAL_BODY_AGAIN与SKIP_BODY,前者会再显示一次标签间的文字,后者则继续执行标签处理的下一步。

    预定的处理顺序是:doStartTag()返回SKIP_BODY,doAfterBodyTag()返回SKIP_BODY,doEndTag()返回EVAL_PAGE.

   如果继承了TagSupport之后,如果没有改写任何的方法,标签处理的执行顺序是:

    doStartTag() ->不显示文字 ->doEndTag()->执行接下来的网页

   如果您改写了doStartTag(),则必须指定返回值,如果指定了EVAL_BODY_INCLUDE,则执行顺序是

    doStartTag()->显示文字->doAfterBodyTag()->doEndTag()->执行下面的网页



下面這個程式簡單的示範如何使用自訂標籤來對網頁內容作一些保護:

     * GuardTag.java

package onlyfun.caterpillar;



import java.io.*;

import javax.servlet.jsp.*;

import javax.servlet.jsp.tagext.*;



public class GuardTag extends TagSupport {

     public int doStartTag() throws JspException {

         String valid =

             pageContext.getRequest().getParameter("valid");



         // 如果flag設定為key,就顯示本體文字內容

         if(valid.equals("valid_user")) {

             return EVAL_BODY_INCLUDE;

         }



         return SKIP_BODY;

     }

}


同樣的,程式編譯完之後,放置在WEB-INF/classes/之下,然後編譯.tld檔案,如下:

     * guardtag.tld

<?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">

   

     <description>Tag Demo</description>

     <tlib-version>1.0</tlib-version>

     <jsp-version>2.0</jsp-version>

     <short-name>TagDemo</short-name>

     <uri>/TagDemo</uri>


     <tag>

         <description>Cuard BodyText</description>

         <name>guard</name>

         <tag-class>onlyfun.caterpillar.GuardTag</tag-class>

         <body-content>JSP</body-content>

     </tag>


</taglib>


在<body-content>中設定的是JSP,這表示如果本體中包括JSP網頁的內容,將會被編譯執行,接下來您可以在web.xml中定義uri與.tld的名稱對應關係,方法與前一個主題相同,這邊就不重複說明了,然後撰寫一個測試的JSP網頁:

     * test.jsp

<%@taglib prefix="caterpillar"

            uri="" TARGET="_blank">http://caterpillar.onlyfun.net/"%>

<html>

<body>

     這個網頁包括受保護的內容OOOXXXX。。。。。。<p>

     <caterpillar:guard>

         ${ param.user }, 您好,幸運密碼是 oooxxx !

     </caterpillar:guard>

</body>

</html>


為了要能看到幸運密碼,您必須在請求中包括guard參數,假設請求是:
http://localhost:8080/myjsp/test.j ... _user&user=Justin


這樣就可以看到幸運密碼了:
<html>

<body>

     這個網頁包括受包護的內容OOOXXXX。。。。。。<p>

  

         Justin, 您好,幸運密碼是: oooxxx !

  

</body>
</html>

你可能感兴趣的:(Web,jsp,xml,.net,servlet)