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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? spring.tld

?? spring+Hibernate +jsf
?? 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>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>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本美女一区二区| 久久99久久久欧美国产| 日韩一区二区免费在线电影| 天天色 色综合| 国产精品嫩草久久久久| 欧美丰满高潮xxxx喷水动漫| 成人天堂资源www在线| 日韩精品中文字幕一区二区三区| 丝袜美腿高跟呻吟高潮一区| 国产精品久久久久7777按摩| 欧美一卡二卡三卡| 欧洲一区二区三区在线| 97国产精品videossex| 国产99久久久国产精品潘金| 久久99精品一区二区三区 | 欧美日韩久久久一区| 国产麻豆精品一区二区| 久久精品国产澳门| 韩国女主播成人在线观看| 麻豆精品久久久| 日本vs亚洲vs韩国一区三区二区| 爽爽淫人综合网网站| 亚洲精品ww久久久久久p站 | 国产精品不卡在线| 一区二区三区精密机械公司| 亚洲欧美色图小说| 亚洲福利一区二区三区| 日韩中文字幕一区二区三区| 亚洲一区二区综合| 夜夜嗨av一区二区三区 | 亚洲国产成人在线| 亚洲欧洲日韩一区二区三区| 久久免费午夜影院| 欧美激情一区二区三区不卡 | 国产无人区一区二区三区| 精品99久久久久久| 日本一区二区三区在线不卡| 国产日韩欧美不卡| 国产精品视频一二三| 亚洲乱码国产乱码精品精98午夜| 国产亚洲精品资源在线26u| 国产欧美视频一区二区三区| 亚洲国产成人在线| 香蕉加勒比综合久久| 精品一区二区在线播放| 成人开心网精品视频| 在线观看日韩国产| 日韩美女一区二区三区四区| 欧美国产日韩在线观看| 亚洲欧美韩国综合色| 视频一区二区三区在线| 国产剧情一区二区| 成人精品免费看| 久久99久久99精品免视看婷婷 | 国产一区二区在线电影| 99久久99久久精品免费看蜜桃| 欧美在线观看视频在线| 日韩精品一区二| 亚洲精品成人悠悠色影视| 裸体在线国模精品偷拍| 91免费视频网| 久久影院午夜片一区| 亚洲妇熟xx妇色黄| 99久久精品一区| 久久久久久夜精品精品免费| 亚洲靠逼com| 久久99日本精品| 欧美午夜精品免费| 国产日韩精品一区二区三区在线| 日韩1区2区日韩1区2区| 91成人在线精品| 亚洲欧洲日韩一区二区三区| 国产另类ts人妖一区二区| 91精品国产麻豆| 奇米一区二区三区| 欧美丰满一区二区免费视频| 亚洲精品成a人| 91精品国产综合久久精品app| 91精品国产综合久久香蕉麻豆| 亚洲永久精品国产| 欧美三区免费完整视频在线观看| 亚洲欧美一区二区三区极速播放 | 日韩一区二区三区高清免费看看| 一区二区三区美女| 欧美午夜片在线观看| 日韩制服丝袜av| 欧美日本精品一区二区三区| 亚洲高清在线视频| 欧美二区乱c少妇| 麻豆成人久久精品二区三区小说| 日韩一区二区在线观看视频播放| 日日摸夜夜添夜夜添精品视频| av在线不卡网| 亚洲国产日韩综合久久精品| 欧美日韩精品免费| 日本欧美一区二区在线观看| 91电影在线观看| 日韩av网站在线观看| 欧美成人a∨高清免费观看| 韩国av一区二区| 亚洲欧洲成人av每日更新| voyeur盗摄精品| 亚洲精品亚洲人成人网在线播放| 欧美中文字幕不卡| 蜜臀精品久久久久久蜜臀| 国产欧美一区二区三区网站 | zzijzzij亚洲日本少妇熟睡| 一区二区在线观看av| 91精品久久久久久久久99蜜臂| 国产在线一区观看| 亚洲国产精品欧美一二99| 国产日韩欧美不卡在线| 欧美猛男男办公室激情| av资源站一区| 激情五月婷婷综合网| 亚洲一区在线观看网站| 日本一区二区三级电影在线观看 | 精品国产一二三区| 欧美三级电影一区| 91污在线观看| 成人av资源站| 国产a区久久久| 麻豆成人久久精品二区三区红| 亚洲伊人色欲综合网| 亚洲人亚洲人成电影网站色| 欧美日韩国产在线观看| www.欧美色图| 99精品欧美一区二区三区综合在线| 麻豆精品一区二区| 麻豆国产精品官网| 免费观看久久久4p| 麻豆传媒一区二区三区| 美女脱光内衣内裤视频久久网站 | 丝袜美腿高跟呻吟高潮一区| 亚洲国产乱码最新视频| 亚洲资源中文字幕| 亚洲成a人片综合在线| 日韩av中文字幕一区二区三区| 亚洲午夜电影网| 日韩理论片网站| 亚洲国产成人va在线观看天堂| 亚洲精品高清视频在线观看| 亚洲制服丝袜一区| 日韩精彩视频在线观看| 精品一区二区三区免费观看| 视频一区中文字幕国产| 亚洲成人一区在线| 国产一区二区三区香蕉| 成人av在线观| 一本一道波多野结衣一区二区| 欧日韩精品视频| 精品国产免费人成在线观看| 日本一区二区三区免费乱视频| 成人免费在线观看入口| 中文字幕欧美日韩一区| 日韩欧美国产一区在线观看| 久久先锋影音av鲁色资源| 亚洲精品久久嫩草网站秘色| 六月丁香婷婷久久| 91年精品国产| 久久精品视频在线看| 亚洲444eee在线观看| 国产乱国产乱300精品| 欧美日韩色一区| 亚洲精品国产精品乱码不99| 国产在线观看一区二区| 欧美日本乱大交xxxxx| 国产精品你懂的在线| 亚洲综合色噜噜狠狠| 精品写真视频在线观看| 成人99免费视频| 日韩欧美一二三区| 蜜臀精品一区二区三区在线观看| 91免费视频大全| 亚洲美女视频一区| 91色porny| 国产精品美女久久福利网站| 狠狠色狠狠色综合| 精品精品国产高清a毛片牛牛| 一区二区欧美精品| 91丨九色丨尤物| 日韩理论电影院| 91久久奴性调教| 亚洲人吸女人奶水| 国产乱码字幕精品高清av| 欧美一区二区三区婷婷月色| 天天影视网天天综合色在线播放 | 国产精品一级在线| 久久久久久亚洲综合影院红桃| 免费在线观看一区二区三区| jiyouzz国产精品久久| 久久综合色综合88| 韩国成人在线视频| 欧美不卡一二三| 激情深爱一区二区| 久久众筹精品私拍模特| 国产成人自拍在线| 亚洲理论在线观看| 欧美另类高清zo欧美| 免费成人av在线|