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

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

?? spring.tld

?? 權(quán)限組件的java代碼寫(xiě)法例子下載
?? 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一区二区三区免费野_久草精品视频
99热精品一区二区| 久久这里都是精品| 色婷婷久久久亚洲一区二区三区| 国产精品91xxx| 国产超碰在线一区| 国产91精品露脸国语对白| 国产高清不卡一区| 成人午夜av在线| 99精品国产一区二区三区不卡 | 欧美日韩日本视频| 欧美视频第二页| 欧美在线免费播放| 欧美美女一区二区| 日韩三级中文字幕| 久久久99精品免费观看不卡| 国产女人18毛片水真多成人如厕 | 天堂一区二区在线| 麻豆久久久久久久| 激情六月婷婷综合| 91丨九色丨黑人外教| 欧美午夜精品理论片a级按摩| 欧美一区午夜精品| 国产性天天综合网| 亚洲欧美激情小说另类| 日韩精品成人一区二区在线| 激情六月婷婷久久| 国产欧美一区二区精品忘忧草 | 成人免费视频一区| 一本久久a久久精品亚洲| 欧美性色黄大片| 欧美成人猛片aaaaaaa| 国产日韩v精品一区二区| 亚洲日本一区二区三区| 日韩主播视频在线| 成人自拍视频在线观看| 欧美亚洲国产bt| 精品电影一区二区三区| 日韩一区在线播放| 麻豆一区二区三| 99这里只有久久精品视频| 欧美日韩国产高清一区二区三区| 精品sm在线观看| 亚洲美女在线一区| 国产精品伊人色| 欧美三日本三级三级在线播放| 欧美成人r级一区二区三区| 日韩毛片在线免费观看| 久草精品在线观看| 色综合天天综合在线视频| 日韩欧美久久一区| 有码一区二区三区| 国产成人av一区二区| 欧美日韩和欧美的一区二区| 中日韩av电影| 调教+趴+乳夹+国产+精品| 成人性生交大片免费| 884aa四虎影成人精品一区| 国产精品久久综合| 韩国v欧美v日本v亚洲v| 欧美日本在线观看| 中文字幕一区二区三区不卡在线 | 一区二区三区在线高清| 狠狠色综合日日| 欧美另类一区二区三区| 日韩毛片高清在线播放| 国产一区二区三区黄视频 | 日韩欧美综合一区| 最新热久久免费视频| 麻豆国产欧美日韩综合精品二区 | 日韩三级精品电影久久久| 亚洲色图一区二区| 国产一本一道久久香蕉| 欧美喷潮久久久xxxxx| 日韩美女视频19| 成人免费观看av| 精品国产百合女同互慰| 日韩av在线免费观看不卡| 色婷婷精品大在线视频| 国产精品久久久久久久久快鸭| 久久99久久精品| 日韩一二三区视频| 日韩精品一二区| 欧美视频三区在线播放| 一区二区三区四区在线| 91污片在线观看| 国产精品精品国产色婷婷| 国产高清久久久久| 国产视频一区二区在线| 国产一区在线精品| 精品国产乱码久久久久久免费 | 欧美午夜不卡在线观看免费| 亚洲丝袜精品丝袜在线| www.视频一区| 中文字幕一区二区三区不卡| 国产乱人伦偷精品视频不卡| 2021国产精品久久精品| 国产在线播放一区二区三区| 久久综合九色综合久久久精品综合| 久久99久久精品| 26uuu欧美| 国产成人在线观看| 欧美国产精品中文字幕| 北条麻妃国产九九精品视频| 国产精品白丝在线| 国产精品网友自拍| 成人v精品蜜桃久久一区| 国产精品久99| 色婷婷av久久久久久久| 亚洲丰满少妇videoshd| 欧美老肥妇做.爰bbww| 日韩和欧美一区二区三区| 日韩一区二区免费在线观看| 久久国产精品72免费观看| 久久综合成人精品亚洲另类欧美| 国产传媒一区在线| 国产日韩三级在线| 99亚偷拍自图区亚洲| 亚洲欧美另类久久久精品2019| 欧洲精品在线观看| 日本不卡中文字幕| 久久亚洲二区三区| jizzjizzjizz欧美| 亚洲国产日韩综合久久精品| 日韩天堂在线观看| 国产剧情av麻豆香蕉精品| 中文字幕在线不卡| 欧美色视频在线| 激情五月激情综合网| 中文字幕一区在线| 欧美精品xxxxbbbb| 国产精品原创巨作av| 一区二区三区在线视频免费观看| 欧美日韩国产影片| 国产成人综合在线播放| 亚洲女女做受ⅹxx高潮| 91麻豆精品国产91久久久使用方法| 韩国精品免费视频| 一级女性全黄久久生活片免费| 4438x亚洲最大成人网| 国产精品原创巨作av| 一卡二卡欧美日韩| 久久久五月婷婷| 在线一区二区三区四区五区| 麻豆中文一区二区| 亚洲人成在线观看一区二区| 欧美一级生活片| 91丝袜国产在线播放| 蜜臀久久久久久久| 成人免费在线播放视频| 日韩一级二级三级精品视频| 95精品视频在线| 精品亚洲成a人| 亚洲国产日韩a在线播放| 国产亚洲自拍一区| 欧美日本乱大交xxxxx| 岛国精品在线播放| 日韩成人免费看| 亚洲蜜桃精久久久久久久| 久久亚洲二区三区| 欧美精品在线观看播放| 成人免费看视频| 美女尤物国产一区| 亚洲制服丝袜一区| 中文幕一区二区三区久久蜜桃| 91精品国产aⅴ一区二区| 一本色道亚洲精品aⅴ| 国产乱子轮精品视频| 日本一区中文字幕| 亚洲激情综合网| 国产欧美日韩另类一区| 欧美一区二区美女| 欧美最新大片在线看| www.综合网.com| 国产精品77777竹菊影视小说| 日韩精品久久久久久| 亚洲综合999| 亚洲手机成人高清视频| 国产欧美一区二区三区网站| 日韩欧美一卡二卡| 欧美日韩亚州综合| 色狠狠av一区二区三区| www.视频一区| 成人免费视频播放| 国产在线观看一区二区| 久久99精品一区二区三区| 日韩精品三区四区| 性做久久久久久| 亚洲成人在线网站| 夜夜嗨av一区二区三区网页 | 琪琪一区二区三区| 亚洲国产精品影院| 亚洲精品日日夜夜| 亚洲视频免费在线观看| 中文字幕一区二区不卡| 欧美高清在线视频| 国产精品免费aⅴ片在线观看| 久久精品一区二区三区av| 久久影院午夜论| 久久久久久久久久电影| 久久久精品2019中文字幕之3|