亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? spring.tld

?? 簡(jiǎn)單的SSH登陸其中用到Spring、Struts、hibernate
?? TLD
字號(hào):
<?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>2.0</tlib-version>
	<jsp-version>1.2</jsp-version>
	<short-name>spring</short-name>
	<uri>http://www.springframework.org/tags</uri>
	<description>Spring Framework JSP Tag Library</description>

	<tag>
		<name>htmlEscape</name>
		<tag-class>org.springframework.web.servlet.tags.HtmlEscapeTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Sets default HTML escape value for the current page.
			Overrides a "defaultHtmlEscape" context-param in web.xml, if any.
		</description>
		<attribute>
			<name>defaultHtmlEscape</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set the default value for HTML escaping, to be put
				into the current PageContext.</description>
		</attribute>
	</tag>

	<tag>
		<name>escapeBody</name>
		<tag-class>org.springframework.web.servlet.tags.EscapeBodyTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Escapes its enclosed body content, applying HTML escaping and/or JavaScript escaping.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value. Overrides the
			default HTML escaping setting for the current page.</description>
		</attribute>
		<attribute>
			<name>javaScriptEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set JavaScript escaping for this tag, as boolean value.
			Default is false.</description>
		</attribute>
	</tag>

	<tag>
		<name>message</name>
		<tag-class>org.springframework.web.servlet.tags.MessageTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Retrieves the message with the given code, or text if code isn't resolvable.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>
		<attribute>
			<name>message</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>A MessageSourceResolvable argument (direct or through JSP EL).
				Fits nicely when used in conjunction with Spring's own validation error
				classes which all implement the MessageSourceResolvable interface. For
				example, this allows you to iterate over all of the errors in a form,
				passing each error (using a runtime expression) as the value of this
				'message' attribute, thus effecting the easy display of such error
				messages.</description>
		</attribute>
		<attribute>
			<name>code</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The code (key) to use when looking up the message.
			If code is not provided, the text attribute will be used.</description>
		</attribute>
		<attribute>
			<name>arguments</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set optional message arguments for this tag, as a
			(comma-)delimited String (each String argument can contain JSP EL),
			an Object array (used as argument array), or a single Object (used
			as single argument).</description>
		</attribute>
		<attribute>
			<name>argumentSeparator</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The separator character to be used for splitting the
			arguments string value; defaults to a 'comma' (',').</description>
		</attribute>
		<attribute>
			<name>text</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Default text to output when a message for the given code
			could not be found. If both text and code are not set, the tag will
			output null.</description>
		</attribute>
		<attribute>
			<name>var</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The string to use when binding the result to the page,
			request, session or application scope. If not specified, the result
			gets outputted to the writer (i.e. typically directly to the JSP).</description>
		</attribute>
		<attribute>
			<name>scope</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The scope to use when exporting the result to a variable.
			This attribute is only used when var is also set. Possible values are
			page, request, session and application.</description>
		</attribute>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value.
			Overrides the default HTML escaping setting for the current page.</description>
		</attribute>
		<attribute>
			<name>javaScriptEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set JavaScript escaping for this tag, as boolean value. Default is false.</description>
		</attribute>
	</tag>

	<tag>
		<name>theme</name>
		<tag-class>org.springframework.web.servlet.tags.ThemeTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Retrieves the theme message with the given code, or text if code isn't resolvable.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>
		<attribute>
			<name>message</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>A MessageSourceResolvable argument (direct or through JSP EL).</description>
		</attribute>
		<attribute>
			<name>code</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The code (key) to use when looking up the message.
			If code is not provided, the text attribute will be used.</description>
		</attribute>
		<attribute>
			<name>arguments</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set optional message arguments for this tag, as a
			(comma-)delimited String (each String argument can contain JSP EL),
			an Object array (used as argument array), or a single Object (used
			as single argument).</description>
		</attribute>
		<attribute>
			<name>argumentSeparator</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The separator character to be used for splitting the
			arguments string value; defaults to a 'comma' (',').</description>
		</attribute>
		<attribute>
			<name>text</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Default text to output when a message for the given code
			could not be found. If both text and code are not set, the tag will
			output null.</description>
		</attribute>
		<attribute>
			<name>var</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The string to use when binding the result to the page,
			request, session or application scope. If not specified, the result
			gets outputted to the writer (i.e. typically directly to the JSP).</description>
		</attribute>
		<attribute>
			<name>scope</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The scope to use when exporting the result to a variable.
			This attribute is only used when var is also set. Possible values are
			page, request, session and application.</description>
		</attribute>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value.
			Overrides the default HTML escaping setting for the current page.</description>
		</attribute>
		<attribute>
			<name>javaScriptEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set JavaScript escaping for this tag, as boolean value. Default is false.</description>
		</attribute>
	</tag>

	<tag>
		<name>hasBindErrors</name>
		<tag-class>org.springframework.web.servlet.tags.BindErrorsTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Provides Errors instance in case of bind errors.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>
		<variable>
			<name-given>errors</name-given>
			<variable-class>org.springframework.validation.Errors</variable-class>
		</variable>
		<attribute>
			<name>name</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The name of the bean in the request, that needs to be
			inspected for errors. If errors are available for this bean, they
			will be bound under the 'errors' key.</description>
		</attribute>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value.
			Overrides the default HTML escaping setting for the current page.</description>
		</attribute>
	</tag>

	<tag>
		<name>nestedPath</name>
		<tag-class>org.springframework.web.servlet.tags.NestedPathTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Sets a nested path to be used by the bind tag's path.
		</description>
		<variable>
			<name-given>nestedPath</name-given>
			<variable-class>java.lang.String</variable-class>
		</variable>
		<attribute>
			<name>path</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set the path that this tag should apply. E.g. 'customer'
			to allow bind paths like 'address.street' rather than
			'customer.address.street'.</description>
		</attribute>
	</tag>

	<tag>
		<name>bind</name>
		<tag-class>org.springframework.web.servlet.tags.BindTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Provides BindStatus object for the given bind path.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>
		<variable>
			<name-given>status</name-given>
			<variable-class>org.springframework.web.servlet.support.BindStatus</variable-class>
		</variable>
		<attribute>
			<name>path</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The path to the bean or bean property to bind status
			information for. For instance account.name, company.address.zipCode
			or just employee. The status object will exported to the page scope,
			specifically for this bean or bean property</description>
		</attribute>
		<attribute>
			<name>ignoreNestedPath</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set whether to ignore a nested path, if any. Default is to not ignore.</description>
		</attribute>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value. Overrides
			the default HTML escaping setting for the current page.</description>
		</attribute>
	</tag>

	<tag>
		<name>transform</name>
		<tag-class>org.springframework.web.servlet.tags.TransformTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Provides transformation of variables to Strings, using an appropriate
			custom PropertyEditor from BindTag (can only be used inside BindTag).
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a 'defaultHtmlEscape' context-param in web.xml).
		</description>
		<attribute>
			<name>value</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The value to transform. This is the actual object you want
			to have transformed (for instance a Date). Using the PropertyEditor that
			is currently in use by the 'spring:bind' tag.</description>
		</attribute>
		<attribute>
			<name>var</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The string to use when binding the result to the page,
			request, session or application scope. If not specified, the result gets
			outputted to the writer (i.e. typically directly to the JSP).</description>
		</attribute>
		<attribute>
			<name>scope</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The scope to use when exported the result to a variable.
			This attribute is only used when var is also set. Possible values are
			page, request, session and application.</description>
		</attribute>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value. Overrides
			the default HTML escaping setting for the current page.</description>
		</attribute>
	</tag>

</taglib>

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本大胆欧美人术艺术动态 | 日韩欧美卡一卡二| 国产老妇另类xxxxx| 亚洲一二三四久久| 国产午夜精品在线观看| 欧美日韩高清一区二区| 99视频精品免费视频| 韩国三级在线一区| 日韩黄色免费网站| 一区二区三区在线观看网站| 久久人人97超碰com| 制服.丝袜.亚洲.中文.综合| 欧亚洲嫩模精品一区三区| 夫妻av一区二区| 美女国产一区二区| 日本亚洲天堂网| 亚洲成人黄色小说| 一区二区免费视频| 亚洲三级免费电影| 国产精品人妖ts系列视频| 91精品欧美福利在线观看| 欧美亚洲动漫制服丝袜| 95精品视频在线| 不卡视频一二三四| 成人黄色网址在线观看| 高清不卡一区二区在线| 国产在线视频一区二区三区| 麻豆精品精品国产自在97香蕉| 午夜影院久久久| 一区二区三区中文在线| 亚洲乱码国产乱码精品精小说| 国产精品国产a| 自拍偷拍亚洲欧美日韩| 亚洲视频你懂的| 成人欧美一区二区三区| 国产精品成人免费| 亚洲丝袜自拍清纯另类| 亚洲欧美偷拍卡通变态| 亚洲三级小视频| 一区二区三区免费网站| 亚洲国产欧美在线人成| 亚洲成人777| 免费美女久久99| 精品中文字幕一区二区小辣椒| 蜜臀精品一区二区三区在线观看 | 亚洲精品久久久蜜桃| 中文字幕一区不卡| 中文字幕一区av| 亚洲精品乱码久久久久| 香港成人在线视频| 免费观看日韩av| 久久精品国产99久久6| 麻豆国产一区二区| 国产大陆亚洲精品国产| 成人18视频日本| 在线观看区一区二| 欧美精品777| 欧美一级久久久| 亚洲精品一区二区三区精华液| 久久久久久久久久久久久夜| 国产精品久久久久久久第一福利 | 亚洲成人1区2区| 人禽交欧美网站| 国产激情精品久久久第一区二区| 国产精品99久久久| 成人激情综合网站| 在线一区二区三区四区| 在线不卡的av| 国产女人18水真多18精品一级做| ...xxx性欧美| 视频一区中文字幕国产| 国产激情偷乱视频一区二区三区| 91尤物视频在线观看| 欧美一区二区三区免费观看视频| 国产三级精品三级在线专区| 亚洲免费观看高清完整版在线观看 | 成人免费毛片高清视频| 一本久道中文字幕精品亚洲嫩| 宅男噜噜噜66一区二区66| 国产日韩精品一区| 亚洲444eee在线观看| 国内精品伊人久久久久影院对白| 99在线精品免费| 日韩精品自拍偷拍| 亚洲视频1区2区| 韩日av一区二区| 欧美三级电影精品| 久久综合国产精品| 亚洲综合一二三区| 国产馆精品极品| 在线不卡欧美精品一区二区三区| 国产精品拍天天在线| 美女www一区二区| 91国产免费观看| 中文字幕va一区二区三区| 午夜激情一区二区| av在线一区二区三区| 日韩精品一区二区三区中文不卡 | 亚洲精选视频在线| 麻豆精品精品国产自在97香蕉| 91福利在线播放| 国产精品国产三级国产专播品爱网| 另类调教123区 | 日韩美女在线视频| 亚洲国产另类精品专区| 成人ar影院免费观看视频| 精品少妇一区二区三区视频免付费 | 欧美激情综合在线| 蓝色福利精品导航| 欧美另类高清zo欧美| 国产精品初高中害羞小美女文| 免费看欧美女人艹b| 欧美日韩国产精选| 亚洲精品高清视频在线观看| 成人aa视频在线观看| 久久久精品免费观看| 久久国产精品72免费观看| 欧美美女视频在线观看| 亚洲成人动漫在线观看| 色综合天天综合网天天看片 | 免费成人在线观看视频| 91国偷自产一区二区使用方法| 国产女人水真多18毛片18精品视频 | 国内精品伊人久久久久av影院| 9191成人精品久久| 五月开心婷婷久久| 在线影院国内精品| 亚洲国产一区视频| 色94色欧美sute亚洲线路一ni| 日韩毛片视频在线看| 成人国产在线观看| 中文字幕成人av| 成人av在线播放网址| 国产精品妹子av| 99热99精品| 亚洲免费av观看| 91成人免费网站| 亚洲va天堂va国产va久| 欧美精品xxxxbbbb| 日本欧美久久久久免费播放网| 日韩一区二区三区免费观看| 蜜臀av国产精品久久久久 | 国产精品天天看| 成人理论电影网| 1024成人网| 欧美视频一区二| 日韩va欧美va亚洲va久久| 91精品国产全国免费观看| 日本中文字幕一区二区有限公司| 欧美一级xxx| 国产高清视频一区| 国产精品情趣视频| 91亚洲精华国产精华精华液| 亚洲午夜电影网| 日韩一区二区免费在线电影| 久久99精品久久久久久| 国产欧美日韩在线视频| 波多野结衣在线aⅴ中文字幕不卡| 国产精品每日更新| 91福利精品视频| 美脚の诱脚舐め脚责91| 国产日韩欧美一区二区三区乱码| 粉嫩久久99精品久久久久久夜| 亚洲欧洲无码一区二区三区| 91久久精品日日躁夜夜躁欧美| 五月天国产精品| 久久麻豆一区二区| 色狠狠av一区二区三区| 蜜桃视频第一区免费观看| 国产视频亚洲色图| 色综合久久综合中文综合网| 青青草成人在线观看| 日本一区二区综合亚洲| 欧美性猛片aaaaaaa做受| 日本一不卡视频| 日韩一区日韩二区| 69堂亚洲精品首页| 成人免费高清视频在线观看| 性感美女极品91精品| 国产欧美久久久精品影院| 欧美日韩精品专区| 国产91色综合久久免费分享| 五月婷婷欧美视频| 中文无字幕一区二区三区 | 狠狠久久亚洲欧美| 综合婷婷亚洲小说| 精品成人在线观看| 欧美三级日本三级少妇99| 国产精品一级在线| 天堂久久久久va久久久久| 国产农村妇女精品| 337p亚洲精品色噜噜噜| 波多野结衣视频一区| 麻豆精品视频在线观看免费| 一二三区精品视频| 日本一区二区三区在线不卡| 欧美一卡二卡三卡四卡| 一本大道久久a久久精品综合| 精一区二区三区| av一区二区三区黑人|