⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mytag.tld

📁 《精通JSP编程 》源代码(赵强那本) 很有用的源代码
💻 TLD
字号:
<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE taglib PUBLIC
  "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
  "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">

<taglib>
  <tlib-version>1.2</tlib-version>
  <jsp-version>1.2</jsp-version>
  <short-name>mytag</short-name>
  <description>
    This taglib provides tag example
  </description>
 <tag>	
        <name>info</name>
	<tag-class>edu.jsp.tag.InfoTagExample</tag-class>
	<body-content>empty</body-content>
        <attribute>
  		<name>userName</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
    </tag>
    
    <tag>	
        <name>loop</name>
	<tag-class>edu.jsp.tag.InfoTagBodyExample</tag-class>
	<body-content>jsp</body-content>
        <attribute>
  		<name>userName</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
  	<attribute>
  		<name>count</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
    </tag>
    
    <tag>	
        <name>mapDefine</name>
	<tag-class>edu.jsp.tag.MapDefineTag</tag-class>
	<body-content>jsp</body-content>
        <attribute>
  		<name>id</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
  	
    </tag>
    
    <tag>	
        <name>mapEntry</name>
	<tag-class>edu.jsp.tag.MapEntryTag</tag-class>
	<body-content>jsp</body-content>
        <attribute>
  		<name>id</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
  	<attribute>
  		<name>value</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
  	
    </tag>
    
</taglib>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -