Jsp tag 可以靈活的將公共JSP代碼模塊化,相似<jsp:include page="./include.jsp"></jsp:include>等等。jsp
咱們本身定義的JSP模塊代碼可能在引用時會依據不一樣的引用場景,需要顯示的內容略有不一樣,這時使用JSP.INCLUDE就不能知足咱們的需求了。模塊化
所以,咱們可以使用JSP tag 的方式實現。ui
第一步this
在WEB-INF/tags文件夾下建立 demo.tag 文件spa
代碼例如如下:class
<%@tag pageEncoding="UTF-8" isELIgnored="false" body-content="empty"%>test
<!-- 定義引用時必要的屬性 (可選)-->require
<%@ attribute name="type" required="true" rtexprvalue="true" %>coding
this jsp tag content type:<%=this.type %>引用
第二步 使用該TAG
咱們僅僅需要在使用的JSP 頭部引入該Tag
<%@ taglib prefix="tags" tagdir="/WEB-INF/tags"%>
其次在需要輸出TAG信息的地方使用
<tags:demo type="test"/>
完畢。