jsp中建立一個帶標籤體的迭代器標籤

來源:互聯網
上載者:User

1.定義迭代器標籤處理類:

 

 代碼如下 複製代碼
package mckee;
 
import java.io.IOException;
import java.util.Collection;
 
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.SimpleTagSupport;
 
public class IteratorTag extends SimpleTagSupport
{
 //指定集合
 private String collection;
 //指定集合元素
 private String item;
 //getter 和 setter
 public String getCollection() {
  return collection;
 }
 public void setCollection(String collection) {
  this.collection = collection;
 }
 public String getItem() {
  return item;
 }
 public void setItem(String item) {
  this.item = item;
 }
 public void doTag() throws JspException, IOException
 {
  //擷取集合
  Collection itemList = (Collection) getJspContext().getAttribute(collection);
  //遍曆集合
  for(Object s : itemList)
  { 
   //將集合元素設定到page範圍
   getJspContext().setAttribute(item, s);
   //輸出標籤體
   getJspBody().invoke(null);
  }
 }
}

2.建立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 http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
    version="2.0">
    <tlib-version>1.0</tlib-version>
    <short-name>mytag</short-name>
    <uri>/mytag</uri><!-- 這個很重要,jsp頁面就是根據uri來定位標籤庫的 -->
    <tag>
     <name>iterator</name><!-- 定義標籤名 -->
     <tag-class>mckee.IteratorTag</tag-class><!-- 定義標籤處理類 -->
     <body-content>scriptless</body-content><!-- 定義標籤體 -->
     <!-- 配置collection和item兩個標籤屬性 -->
     <attribute>
      <name>collection</name>
      <required>true</required>
      <fragment>true</fragment>
     </attribute>
     <attribute>
      <name>item</name>
      <required>true</required>
      <fragment>true</fragment>
     </attribute>
    </tag>
 
</taglib>

2.建立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 http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
    version="2.0">
    <tlib-version>1.0</tlib-version>
    <short-name>mytag</short-name>
    <uri>/mytag</uri><!-- 這個很重要,jsp頁面就是根據uri來定位標籤庫的 -->
    <tag>
     <name>iterator</name><!-- 定義標籤名 -->
     <tag-class>mckee.IteratorTag</tag-class><!-- 定義標籤處理類 -->
     <body-content>scriptless</body-content><!-- 定義標籤體 -->
     <!-- 配置collection和item兩個標籤屬性 -->
     <attribute>
      <name>collection</name>
      <required>true</required>
      <fragment>true</fragment>
     </attribute>
     <attribute>
      <name>item</name>
      <required>true</required>
      <fragment>true</fragment>
     </attribute>
    </tag>
 
</taglib>

3.在jsp頁面中測試標籤

 代碼如下 複製代碼


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="java.util.*" %>
<%@ taglib uri="/mytag" prefix="mytag" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>powered by http://www.111cn.net</title>
</head>
<body>
<%
 List<String> arr = new ArrayList<String>();
 arr.add("java教程");
 arr.add("http://www.111cn.net");
 pageContext.setAttribute("arr",arr);
%>
<mytag:iterator collection="arr" item="item">
${pageScope.item}<br>
</mytag:iterator>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.