自定义标签的接口关系图
创建自定义标签的步骤
1)创建标签的处理类 创建的标签处理类要继承javax.servlet.jsp.tagext.TagSupport 类 或 javax.servlet.jsp.tagext.BodyTagSupport 类, 并重写 两个重要的方法 doStartTag(),doEndTag()
2)创建标签库描述文件(格式 .tld 其实就是一个xml文档), 这个文件要放在WEB-INF目录下
3)在jsp文件中引入标签库,然后插入标签,例如 Servlet容器编译jsp文件时,如果遇到自定义标签就会调用这个标签的处理类
实例
编写tag类
package com.lious.tag; import java.io.IOException; import javax.servlet.jsp.JspException; import javax.servlet.jsp.PageContext; import javax.servlet.jsp.tagext.TagSupport; public class MyTag extends TagSupport{ @Override public int doStartTag() throws JspException { try { this.pageContext.getOut().write("hello"); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return EVAL_BODY_INCLUDE; } @Override public int doEndTag() throws JspException { try { this.pageContext.getOut().write("i‘m coming---"); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return SKIP_PAGE; } }
编写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>hello</short-name> <uri>http://java.sun.com/jsp/jstl/mytag</uri> <tag> <name>hello</name> <tag-class>com.lious.tag.MyTag</tag-class> <body-content>JSP</body-content> </tag> </taglib>
jsp页面
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/mytag" prefix="hello" %> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body> <hello:hello>北京天安门,</hello:hello> <hr> <p>其实我还好</p> </body> </html>
简单的demo,运行效果