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

📄 mytag.tld

📁 张新曼 精通JSP Web 开发技术与典型应用 随书光盘源码
💻 TLD
字号:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<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 web-jsptaglibrary_2_0.xsd"
    version="2.0">
    <description>A tag library exercising SimpleTag handlers.</description>
    <tlib-version>1.0</tlib-version>//taglib版本号
	<jsp-version>1.2</jsp-version>//jsp版本号的规定
  <short-name>examples</short-name>
  <uri>/demotag</uri>
  <description>
	A simple tab library for the examples
  </description>
<tag>
	<description>实现Tag接口</description>
        <name>welcome</name>
	<tag-class>ch10.WelcomeTag</tag-class>
	<body-content>empty</body-content>
   </tag>
    
  <tag>
	<description>实现Simple Tag接口</description>
        <name>simp</name>
	<tag-class>ch10.Welcome_SimpleTag</tag-class>
	<body-content>empty</body-content>
    </tag>
      <tag>	
        <name>loop</name>
	<tag-class>ch10.BodyTag</tag-class>
	<body-content>jsp</body-content>
        <attribute>
  		<name>counts</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
    </tag>
    <tag>	
        <name>if</name>
	<tag-class>ch10.IfTag</tag-class>
	<body-content>jsp</body-content>
        <attribute>
  		<name>value</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
    </tag>
   <tag>	
        <name>out</name>
	<tag-class>ch10.OutTag</tag-class>
	<body-content>jsp</body-content>
        <attribute>
  		<name>value</name>
  		<required>true</required>
  		<rtexprvalue>true</rtexprvalue>
  	</attribute>
     </tag>
   
  <tag>
  	<name>time</name>
  	<tag-class>ch10.TimeTag</tag-class>
	<attribute>
		<name>format</name>
	</attribute>
   </tag>  
   <tag>
   	<name>iterate</name>
   	<tag-class>ch10.IterateTag</tag-class>
   	</tag>
</taglib>

⌨️ 快捷键说明

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