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

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

?? spring.tld

?? 一個 簡單的ssh 登陸源碼 里面類的源碼都有 里面還夾帶了ppt ssh 步驟
?? 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.5</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一区二区三区免费野_久草精品视频
亚洲天堂av一区| 亚洲免费色视频| 欧美三级韩国三级日本三斤 | 色一情一伦一子一伦一区| 国产一区二区毛片| 国产综合成人久久大片91| 精品一区二区三区免费| 久久99热这里只有精品| 美女mm1313爽爽久久久蜜臀| 麻豆91在线播放免费| 久久精品国产久精国产| 国产成人在线视频网站| 不卡av免费在线观看| 色欧美片视频在线观看| 欧美午夜不卡在线观看免费| 欧美日韩国产一二三| 日韩欧美另类在线| 久久久91精品国产一区二区精品| 中文字幕欧美区| 亚洲天堂网中文字| 日韩va亚洲va欧美va久久| 精品亚洲免费视频| 成人免费黄色在线| 在线观看三级视频欧美| 欧美一区二区三区人| 久久久久成人黄色影片| 综合久久久久久久| 日本中文字幕一区二区有限公司| 国产一区二区视频在线播放| 91视频.com| 日韩视频一区二区三区| 中文字幕精品一区| 午夜精品久久久久久久蜜桃app | 精品91自产拍在线观看一区| 中文字幕+乱码+中文字幕一区| 亚洲乱码国产乱码精品精98午夜| 日韩在线卡一卡二| 成人福利电影精品一区二区在线观看 | 视频在线观看一区| 国产不卡视频一区二区三区| 欧美三区免费完整视频在线观看| 亚洲精品在线网站| 亚洲国产精品麻豆| 成人黄页毛片网站| 欧美一区午夜视频在线观看| 成人免费在线观看入口| 美女一区二区三区| 972aa.com艺术欧美| 精品1区2区在线观看| 午夜精品一区二区三区免费视频 | 亚洲欧洲av另类| 久久99久国产精品黄毛片色诱| av一本久道久久综合久久鬼色| 欧美一区二区三区视频在线观看 | 国产色综合一区| 七七婷婷婷婷精品国产| 色视频成人在线观看免| 国产亚洲精品中文字幕| 日韩成人伦理电影在线观看| 欧洲中文字幕精品| 亚洲人精品午夜| 高清在线观看日韩| 久久久综合激的五月天| 蜜臀久久久99精品久久久久久| 欧美伊人精品成人久久综合97| 中文字幕 久热精品 视频在线 | 国产午夜亚洲精品羞羞网站| 日本亚洲最大的色成网站www| 91精品91久久久中77777| 国产精品国产三级国产专播品爱网 | 国产精品妹子av| 国产一区二区主播在线| 日韩欧美一区二区三区在线| 日韩激情一二三区| 欧美一区二区成人| 蜜臀91精品一区二区三区| 欧美丰满嫩嫩电影| 五月婷婷激情综合网| 欧美日韩成人一区二区| 日精品一区二区三区| 欧美一区二区三区视频在线观看| 免费成人av资源网| 久久中文字幕电影| 国产91综合一区在线观看| 国产午夜精品福利| 99久久久精品| 亚洲一区在线播放| 欧美一区在线视频| 久久99国内精品| 国产亚洲婷婷免费| 99re这里都是精品| 亚洲一卡二卡三卡四卡无卡久久| 欧美群妇大交群的观看方式| 日本亚洲三级在线| 久久久99精品免费观看不卡| 波多野结衣中文字幕一区二区三区| 亚洲少妇30p| 欧美精品在线视频| 国产乱码精品一区二区三 | 日韩精品在线看片z| 国产精品亚洲午夜一区二区三区| 国产精品美女视频| 欧美视频一区二区三区在线观看| 日韩精品一级二级| 国产视频不卡一区| 欧美日韩高清一区二区三区| 久久97超碰色| 亚洲欧美日韩国产另类专区| 日韩一区二区三区精品视频| 丁香婷婷深情五月亚洲| 亚洲综合男人的天堂| 欧美精品一区二区三区在线播放| 丁香天五香天堂综合| 丝袜诱惑亚洲看片| 国产精品成人一区二区艾草| 欧美视频中文字幕| 国产凹凸在线观看一区二区| 亚洲第一成年网| 国产欧美日韩另类一区| 777色狠狠一区二区三区| 盗摄精品av一区二区三区| 亚洲一区二区在线播放相泽 | 欧美中文字幕一区二区三区亚洲| 另类小说欧美激情| 亚洲综合色自拍一区| 国产日韩欧美激情| 日韩一级二级三级精品视频| 91无套直看片红桃| 国产高清精品久久久久| 亚洲不卡在线观看| 亚洲视频图片小说| 国产亚洲成av人在线观看导航| 日韩一级黄色大片| 欧美丰满嫩嫩电影| 欧美丝袜丝交足nylons| 不卡的av网站| 国产福利一区在线| 国产一区二区三区香蕉| 日日夜夜免费精品| 一个色综合网站| 1区2区3区精品视频| 国产日韩欧美一区二区三区综合| 日韩一区二区在线观看视频播放| 欧美日韩一区二区三区四区| 一本大道久久a久久综合| 成人一级视频在线观看| 国产一区二区精品在线观看| 九九国产精品视频| 激情综合一区二区三区| 精品一区二区三区视频| 另类成人小视频在线| 日本在线观看不卡视频| 日韩中文字幕麻豆| 日韩国产欧美在线播放| 日本大胆欧美人术艺术动态| 日韩二区在线观看| 美日韩一级片在线观看| 激情综合一区二区三区| 国产精品1024| av电影在线观看一区| 色婷婷久久久亚洲一区二区三区| 99国产精品久久| 欧美色综合久久| 欧美一区二区三区公司| 日韩一级二级三级精品视频| 精品精品欲导航| 国产蜜臀97一区二区三区| 国产精品毛片无遮挡高清| 亚洲日本一区二区| 天天做天天摸天天爽国产一区| 美女脱光内衣内裤视频久久网站| 久久国产三级精品| 国产成人在线免费| 91麻豆国产自产在线观看| 欧美日韩一区二区三区免费看| 欧美精品1区2区| 久久久亚洲高清| 亚洲日本一区二区三区| 男女激情视频一区| 成人污视频在线观看| 欧美综合天天夜夜久久| 精品日韩在线观看| 最好看的中文字幕久久| 日日夜夜一区二区| 成人亚洲一区二区一| 欧美精品久久久久久久多人混战 | 午夜av电影一区| 久久狠狠亚洲综合| 91一区二区在线| 日韩久久免费av| 亚洲三级在线观看| 久久成人麻豆午夜电影| 99精品欧美一区二区三区小说| 欧美三级午夜理伦三级中视频| 久久综合狠狠综合久久激情| 亚洲一卡二卡三卡四卡无卡久久| 国产呦精品一区二区三区网站| 在线观看日韩高清av| 久久精品这里都是精品| 日韩国产精品久久|