自定義標籤

一,jsp自定義標籤

  1)在jsp中會遇到現有標籤不能解決的問題,而自定義標籤就是一個很好的選擇html

二,定義步驟

  1)決定要實現的功能以及格式,例如 <control : if code="1">要展現的內容</control : if>java

  2)編寫tld文件,放在WEB-INF下web

  3)編寫處理類session

三,實現功能

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@taglib prefix="control" uri="WEB-INF/control.tld"%>
<!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>控制</title>
</head>
<body>
       <control:if code="1">
    <a href="http://www.baidu.com">百度</a>
       </control:if>
     <a href="http://www.jd.com">京東</a>
     <a href="http://www.taobao.com">淘寶</a>
</body>
</html>

四,編寫tld文件

<?xml version="1.0" encoding="UTF-8"?>
<taglib xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd" version="2.1"
>
  <tlib-version>1.0</tlib-version>
  <short-name>control</short-name>
  <tag>
    <name>if</name>
    <tag-class>com.****.utli.UserCode</tag-class>
    <body-content>scriptless</body-content>
         //body-content能夠參考https://www.cnblogs.com/keyi/p/7127685.html
    <attribute>
       <description>權限碼</description>
       <required>true</required>
       <rtexprvalue>true</rtexprvalue>
       <name>code</name>
    </attribute>
  </tag>
</taglib>

五,處理類

public class UserCode extends SimpleTagSupport{
    
    private String code;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }
    
    @Override
    public void doTag() throws JspException, IOException {
        // 獲取請求對象
        HttpServletRequest request = (HttpServletRequest) ((PageContext) this.getJspContext()).getRequest();
        // 獲取 session域
        HttpSession session = request.getSession();
        if("1".equals(code)) {
            JspFragment body = this.getJspBody();
            body.invoke(null);
        }
    }
}
相關文章
相關標籤/搜索