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

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

?? spring.tld

?? 醫藥管理
?? 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一区二区三区免费野_久草精品视频
欧美精品色综合| 亚洲欧洲综合另类在线| hitomi一区二区三区精品| 欧美色图免费看| 国产精品美女久久久久久久| 美女一区二区在线观看| 欧洲精品中文字幕| 国产精品三级久久久久三级| 日韩激情av在线| 色视频欧美一区二区三区| 久久久精品国产99久久精品芒果| 首页亚洲欧美制服丝腿| 在线观看亚洲精品视频| 亚洲视频在线观看一区| 东方aⅴ免费观看久久av| 欧美电视剧在线看免费| 日本特黄久久久高潮| 色天天综合久久久久综合片| 国产精品丝袜久久久久久app| 国产综合色视频| 精品国产乱码久久久久久1区2区| 91社区在线播放| 欧美激情资源网| 国产精品1区2区3区| 久久久精品蜜桃| 国产一区二区在线看| 久久免费看少妇高潮| 久久精品国产一区二区三| 欧美一区二区三区不卡| 日韩电影在线观看电影| 日韩欧美一区二区在线视频| 亚洲午夜免费视频| 欧美亚洲一区二区在线| 亚洲成人在线免费| 欧美日韩在线不卡| 三级久久三级久久| 欧美一区二区久久久| 蜜臀av亚洲一区中文字幕| 欧美大片一区二区三区| 国产美女精品在线| 中文字幕第一页久久| 94-欧美-setu| 亚洲高清免费视频| 日韩一区二区影院| 国产精品66部| 日韩理论片网站| 欧美日韩国产123区| 亚洲mv在线观看| 欧美乱熟臀69xxxxxx| 国产综合一区二区| 成人免费在线视频观看| 欧美视频一区二区三区| 麻豆精品久久精品色综合| 国产欧美一区二区精品性色超碰 | 精品一区二区在线观看| wwww国产精品欧美| hitomi一区二区三区精品| 亚洲一区二区av在线| 欧美精品 国产精品| 国产精品一区二区视频| 亚洲精品ww久久久久久p站| 欧美日韩一区三区四区| 韩国v欧美v日本v亚洲v| 一区二区三区 在线观看视频 | 欧美性一级生活| 日韩电影在线一区二区| 中文一区一区三区高中清不卡| 色噜噜狠狠成人中文综合| 美女性感视频久久| 一区二区三区欧美在线观看| 久久综合资源网| 欧美图区在线视频| 高清不卡在线观看| 日韩不卡一区二区三区| 国产精品久久久爽爽爽麻豆色哟哟| 欧美色大人视频| 国产乱码一区二区三区| 午夜影院在线观看欧美| 国产精品蜜臀av| 欧美一区二区三区公司| 97国产精品videossex| 国产一区二区精品久久| 亚洲五月六月丁香激情| 国产精品视频观看| 欧美刺激脚交jootjob| 在线免费亚洲电影| 成人av电影观看| 国产+成+人+亚洲欧洲自线| 一区二区三区在线视频观看58| 日韩一级高清毛片| 色哟哟一区二区三区| 免费在线视频一区| 亚洲乱码精品一二三四区日韩在线| 精品欧美一区二区三区精品久久| 在线欧美日韩精品| 91亚洲精品久久久蜜桃网站| 国产在线播放一区| 蜜臀精品久久久久久蜜臀| 洋洋av久久久久久久一区| 成人欧美一区二区三区视频网页| 日韩精品一区二区三区swag| 在线视频欧美区| 欧美性大战xxxxx久久久| 91电影在线观看| 色婷婷综合久久久久中文| av在线这里只有精品| 成人免费毛片嘿嘿连载视频| 97久久精品人人做人人爽| 精品视频一区二区三区免费| 国精产品一区一区三区mba桃花| 亚洲一区在线免费观看| 亚洲欧洲精品一区二区三区 | 日本乱人伦一区| 91在线国产福利| 91色乱码一区二区三区| 99国产精品久久久久久久久久| 丰满岳乱妇一区二区三区| 国产91精品欧美| 成人国产免费视频| 色久综合一二码| 欧美私模裸体表演在线观看| 欧美日韩美少妇| 欧美精品精品一区| 欧美电视剧在线看免费| 久久日韩粉嫩一区二区三区| 中文久久乱码一区二区| 亚洲婷婷国产精品电影人久久| 伊人色综合久久天天| 亚洲午夜久久久久久久久电影网| 亚洲国产色一区| 蜜臀av一区二区| 天天综合天天做天天综合| 性久久久久久久久| 麻豆国产精品一区二区三区| 国产精品911| 91成人在线免费观看| 91精品国产色综合久久ai换脸 | 国产精品高潮呻吟| 国产999精品久久久久久| 成人免费三级在线| 欧美色区777第一页| 日韩视频一区在线观看| 国产精品天干天干在观线| 亚洲一区二区三区在线看| 麻豆精品一区二区| 91麻豆免费观看| 欧美成人伊人久久综合网| 中文字幕在线不卡| 免费人成网站在线观看欧美高清| 国产精品亚洲午夜一区二区三区 | 成人av片在线观看| 在线观看91精品国产麻豆| 中文字幕欧美日本乱码一线二线| 久久成人免费日本黄色| 精品在线免费视频| 成人va在线观看| 欧美一级一区二区| 亚洲婷婷在线视频| 极品少妇一区二区三区精品视频| 成人免费毛片嘿嘿连载视频| 69堂国产成人免费视频| 亚洲欧洲成人精品av97| 免费在线观看一区| 在线视频一区二区免费| 欧美激情一区二区在线| 日本午夜一区二区| 91免费版在线| 国产亚洲一二三区| 秋霞av亚洲一区二区三| 欧美一级欧美三级在线观看| 亚洲色图制服丝袜| 国产99久久久国产精品潘金| 欧美一区二区三区电影| 亚洲一级二级在线| 99精品国产视频| 国产网站一区二区| 久久99久久99| 欧美日韩高清一区| 中文字幕在线播放不卡一区| 国产99久久精品| 一区二区三区不卡视频在线观看| 天天综合日日夜夜精品| 91久久国产最好的精华液| 国产日产欧美一区二区视频| 久久不见久久见免费视频1| 日韩一区二区三区电影在线观看 | 精品国产123| 日韩和的一区二区| 精品视频在线视频| 亚洲精品国产视频| 色诱视频网站一区| 亚洲三级在线看| 色综合天天狠狠| 亚洲免费观看视频| 在线免费一区三区| 亚洲精品欧美在线| 在线精品视频一区二区| 亚洲综合久久av| 欧美日韩国产综合一区二区| 日韩精品电影一区亚洲|