亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
免费欧美在线视频| 欧美在线看片a免费观看| 91麻豆精品一区二区三区| 欧美电影在线免费观看| 中国色在线观看另类| 肉肉av福利一精品导航| 成人在线综合网站| 日韩一级免费观看| 亚洲福利视频一区二区| av欧美精品.com| 国产性色一区二区| 国模娜娜一区二区三区| eeuss鲁一区二区三区| 久久综合资源网| 七七婷婷婷婷精品国产| 欧美视频在线不卡| 亚洲精品免费在线| 99久久99久久免费精品蜜臀| 欧美激情综合五月色丁香小说| 日本欧美一区二区在线观看| 欧亚一区二区三区| 亚洲精品国产一区二区精华液 | 极品少妇xxxx精品少妇偷拍| 欧美午夜电影网| 亚洲视频 欧洲视频| 国产99久久久国产精品潘金网站| 欧美成人vr18sexvr| 日本最新不卡在线| 7777精品伊人久久久大香线蕉超级流畅 | 狠狠v欧美v日韩v亚洲ⅴ| 欧美美女网站色| 五月天欧美精品| 欧美美女视频在线观看| 日韩av不卡在线观看| 91精品一区二区三区在线观看| 亚洲国产婷婷综合在线精品| 一本色道亚洲精品aⅴ| 亚洲欧美日韩一区二区| 日本丶国产丶欧美色综合| 一区二区三区在线观看欧美| 色偷偷成人一区二区三区91| 亚洲理论在线观看| 91丨porny丨国产| 亚洲黄色在线视频| 欧美精选午夜久久久乱码6080| 亚洲不卡av一区二区三区| 欧美一区二区三区日韩| 久久99精品久久久久久国产越南| 欧美tk—视频vk| 成人18视频在线播放| 亚洲人成影院在线观看| 欧美日本一道本| 久久精品久久久精品美女| 久久精品一区二区三区不卡牛牛| 国产91丝袜在线播放0| 伊人开心综合网| 91精品国产色综合久久ai换脸| 韩国三级在线一区| 中文字幕中文字幕一区二区 | 成人av电影免费观看| 亚洲综合免费观看高清完整版| 337p亚洲精品色噜噜| 国产一本一道久久香蕉| 亚洲男人的天堂在线观看| 337p亚洲精品色噜噜噜| 成人激情动漫在线观看| 日韩综合小视频| 国产亚洲综合在线| 欧美日韩一区在线观看| 国产一区二区三区四区五区美女| 亚洲视频资源在线| 日韩精品中文字幕在线不卡尤物| 成人精品鲁一区一区二区| 亚洲国产成人高清精品| 国产亚洲综合av| 欧美日本一道本在线视频| 成人毛片老司机大片| 水野朝阳av一区二区三区| 中文字幕欧美激情| 欧美一区二区三区影视| 色综合网站在线| 国产一区二区三区日韩| 亚洲女同ⅹxx女同tv| 久久精品欧美一区二区三区麻豆| 欧美日韩精品系列| 91亚洲永久精品| 国产麻豆视频一区| 免费在线观看一区| 亚洲综合免费观看高清在线观看| 欧美国产欧美综合| 精品国产伦一区二区三区观看方式 | 免费观看在线综合| 一区二区三区四区激情| 国产日韩在线不卡| 日韩精品一区二区在线| 欧美艳星brazzers| av一本久道久久综合久久鬼色| 狠狠色狠狠色综合日日91app| 亚洲第一激情av| 亚洲一区免费视频| 亚洲日本乱码在线观看| 中文乱码免费一区二区| 久久久综合精品| 欧美变态tickle挠乳网站| 欧美日韩国产一区| 欧美三级中文字| 91国模大尺度私拍在线视频| yourporn久久国产精品| 成人禁用看黄a在线| 国产一区二区美女| 国产毛片精品视频| 国产一区二区久久| 国内外成人在线视频| 韩国一区二区三区| 国产在线不卡一卡二卡三卡四卡| 麻豆精品精品国产自在97香蕉| 蜜桃视频在线观看一区二区| 日本成人在线视频网站| 另类小说色综合网站| 国内精品伊人久久久久av影院| 美腿丝袜亚洲色图| 国产一区二区三区电影在线观看| 韩日av一区二区| 成人综合婷婷国产精品久久免费| 国产91露脸合集magnet| 成人av免费在线观看| av不卡在线观看| 欧美系列亚洲系列| 日韩亚洲欧美一区| 国产色一区二区| 久久精品网站免费观看| 国产精品你懂的在线欣赏| 成人欧美一区二区三区在线播放| 亚洲欧美在线aaa| 亚洲一区影音先锋| 欧美96一区二区免费视频| 国产精品66部| 色先锋资源久久综合| 欧美精品一卡二卡| 国产性天天综合网| 一区二区成人在线观看| 麻豆一区二区三| 丰满白嫩尤物一区二区| 欧美在线观看18| 精品粉嫩超白一线天av| 亚洲日穴在线视频| 麻豆精品一区二区| av影院午夜一区| 日韩欧美国产综合| 亚洲欧洲日韩一区二区三区| 午夜精品久久久久久久99水蜜桃| 久久精品国产免费看久久精品| 99麻豆久久久国产精品免费 | 欧美日韩免费观看一区三区| 日韩欧美国产系列| 成人欧美一区二区三区白人| 亚洲午夜精品17c| 国产麻豆精品在线| 欧美日韩精品三区| 国产精品视频一二| 免费成人在线观看| 色综合视频在线观看| 26uuu亚洲婷婷狠狠天堂| 亚洲人午夜精品天堂一二香蕉| 日本va欧美va瓶| 日本高清视频一区二区| 国产亚洲一本大道中文在线| 亚洲成av人片观看| 播五月开心婷婷综合| 精品免费一区二区三区| 一区二区三区四区乱视频| 国产黄人亚洲片| 7777精品久久久大香线蕉| 亚洲欧洲综合另类在线| 国产麻豆精品在线| 日韩一级视频免费观看在线| 亚洲尤物视频在线| av日韩在线网站| 国产精品网站在线| 久久国产尿小便嘘嘘| 欧美色倩网站大全免费| 亚洲男人的天堂av| 99视频热这里只有精品免费| 国产日韩欧美麻豆| 韩国一区二区三区| 日韩一级完整毛片| 秋霞午夜鲁丝一区二区老狼| 欧美日韩一区二区不卡| 一个色综合av| 在线观看精品一区| 亚洲裸体在线观看| 成人18视频日本| 国产精品久久久久久久久晋中 | 一个色在线综合| 色综合天天狠狠| 亚洲愉拍自拍另类高清精品| 日本道免费精品一区二区三区| 自拍偷拍亚洲综合| aaa亚洲精品| 一区二区高清在线|