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

📄 c.tld

📁 非常经典的ssh整合实例
💻 TLD
📖 第 1 页 / 共 2 页
字号:
<?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">      <description>JSTL 1.1 core library</description>  <display-name>JSTL core</display-name>  <tlib-version>1.1</tlib-version>  <short-name>c</short-name>  <uri>http://java.sun.com/jsp/jstl/core</uri>  <validator>    <description>        Provides core validation features for JSTL tags.    </description>    <validator-class>        org.apache.taglibs.standard.tlv.JstlCoreTLV    </validator-class>  </validator>  <tag>    <description>        Catches any Throwable that occurs in its body and optionally        exposes it.    </description>    <name>catch</name>    <tag-class>org.apache.taglibs.standard.tag.common.core.CatchTag</tag-class>    <body-content>JSP</body-content>    <attribute>        <description>Name of the exported scoped variable for theexception thrown from a nested action. The type of thescoped variable is the type of the exception thrown.        </description>        <name>var</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>  </tag>  <tag>    <description>	Simple conditional tag that establishes a context for	mutually exclusive conditional operations, marked by	&lt;when&gt; and &lt;otherwise&gt;    </description>    <name>choose</name>    <tag-class>org.apache.taglibs.standard.tag.common.core.ChooseTag</tag-class>    <body-content>JSP</body-content>  </tag>  <tag>    <description>	Simple conditional tag, which evalutes its body if the	supplied condition is true and optionally exposes a Boolean	scripting variable representing the evaluation of this condition    </description>    <name>if</name>    <tag-class>org.apache.taglibs.standard.tag.rt.core.IfTag</tag-class>    <body-content>JSP</body-content>    <attribute>        <description>The test condition that determines whether ornot the body content should be processed.        </description>        <name>test</name>        <required>true</required>        <rtexprvalue>true</rtexprvalue>	<type>boolean</type>    </attribute>    <attribute>        <description>Name of the exported scoped variable for theresulting value of the test condition. The typeof the scoped variable is Boolean.                </description>        <name>var</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Scope for var.        </description>        <name>scope</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>  </tag>  <tag>    <description>        Retrieves an absolute or relative URL and exposes its contents        to either the page, a String in 'var', or a Reader in 'varReader'.    </description>    <name>import</name>    <tag-class>org.apache.taglibs.standard.tag.rt.core.ImportTag</tag-class>    <tei-class>org.apache.taglibs.standard.tei.ImportTEI</tei-class>    <body-content>JSP</body-content>    <attribute>        <description>The URL of the resource to import.        </description>        <name>url</name>        <required>true</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Name of the exported scoped variable for theresource's content. The type of the scopedvariable is String.        </description>        <name>var</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Scope for var.        </description>        <name>scope</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Name of the exported scoped variable for theresource's content. The type of the scopedvariable is Reader.        </description>        <name>varReader</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Name of the context when accessing a relativeURL resource that belongs to a foreigncontext.        </description>        <name>context</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Character encoding of the content at the inputresource.        </description>        <name>charEncoding</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>  </tag>  <tag>    <description>	The basic iteration tag, accepting many different        collection types and supporting subsetting and other        functionality    </description>    <name>forEach</name>    <tag-class>org.apache.taglibs.standard.tag.rt.core.ForEachTag</tag-class>    <tei-class>org.apache.taglibs.standard.tei.ForEachTEI</tei-class>    <body-content>JSP</body-content>    <attribute>        <description>Collection of items to iterate over.        </description>	<name>items</name>	<required>false</required>	<rtexprvalue>true</rtexprvalue>	<type>java.lang.Object</type>    </attribute>    <attribute>        <description>If items specified:Iteration begins at the item located at thespecified index. First item of the collection hasindex 0.If items not specified:Iteration begins with index set at the valuespecified.        </description>	<name>begin</name>	<required>false</required>	<rtexprvalue>true</rtexprvalue>	<type>int</type>    </attribute>    <attribute>        <description>If items specified:Iteration ends at the item located at thespecified index (inclusive).If items not specified:Iteration ends when index reaches the valuespecified.        </description>	<name>end</name>	<required>false</required>	<rtexprvalue>true</rtexprvalue>	<type>int</type>    </attribute>    <attribute>        <description>Iteration will only process every step items ofthe collection, starting with the first one.        </description>	<name>step</name>	<required>false</required>	<rtexprvalue>true</rtexprvalue>	<type>int</type>    </attribute>    <attribute>        <description>Name of the exported scoped variable for thecurrent item of the iteration. This scopedvariable has nested visibility. Its type dependson the object of the underlying collection.        </description>	<name>var</name>	<required>false</required>	<rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Name of the exported scoped variable for thestatus of the iteration. Object exported is of typejavax.servlet.jsp.jstl.core.LoopTagStatus. This scoped variable has nestedvisibility.        </description>	<name>varStatus</name>	<required>false</required>	<rtexprvalue>false</rtexprvalue>    </attribute>  </tag>  <tag>    <description>	Iterates over tokens, separated by the supplied delimeters    </description>    <name>forTokens</name>    <tag-class>org.apache.taglibs.standard.tag.rt.core.ForTokensTag</tag-class>    <body-content>JSP</body-content>    <attribute>        <description>String of tokens to iterate over.        </description>	<name>items</name>	<required>true</required>	<rtexprvalue>true</rtexprvalue>	<type>java.lang.String</type>    </attribute>    <attribute>        <description>The set of delimiters (the characters thatseparate the tokens in the string).        </description>	<name>delims</name>	<required>true</required>	<rtexprvalue>true</rtexprvalue>	<type>java.lang.String</type>    </attribute>    <attribute>        <description>Iteration begins at the token located at thespecified index. First token has index 0.        </description>	<name>begin</name>	<required>false</required>	<rtexprvalue>true</rtexprvalue>	<type>int</type>    </attribute>    <attribute>        <description>Iteration ends at the token located at thespecified index (inclusive).        </description>	<name>end</name>

⌨️ 快捷键说明

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