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

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

?? spring.tld

?? 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.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一区二区三区免费野_久草精品视频
国产精品网站导航| 日韩精品中午字幕| 亚洲一级二级在线| 91福利国产精品| 亚洲成在人线在线播放| 欧美色精品天天在线观看视频| 一区二区三区美女视频| 日本精品视频一区二区三区| 亚洲一区二区欧美日韩| 欧美精品一二三区| 韩国av一区二区三区在线观看| 亚洲电影一级黄| 欧美不卡一区二区三区| 国产精品亚洲综合一区在线观看| 国产精品久久久久永久免费观看 | 精一区二区三区| 国产亚洲制服色| 91黄色激情网站| 久久精品理论片| 中文字幕一区二区三区在线观看| 欧美性色黄大片| 久久99国内精品| 亚洲精品五月天| 日韩精品中午字幕| a4yy欧美一区二区三区| 亚洲一二三四在线| 国产午夜精品一区二区三区嫩草 | 色香蕉成人二区免费| 视频一区免费在线观看| 欧美国产禁国产网站cc| 欧美性三三影院| 国产91高潮流白浆在线麻豆| 一区二区三区四区精品在线视频 | 韩国理伦片一区二区三区在线播放| 国产精品家庭影院| 精品欧美一区二区久久| 色哟哟亚洲精品| 国产精品自拍av| 日韩国产在线一| 综合激情网...| 久久午夜色播影院免费高清| 在线观看区一区二| 成人永久免费视频| 另类综合日韩欧美亚洲| 亚洲国产成人av网| 国产精品卡一卡二| 亚洲观看高清完整版在线观看| 精品国产免费人成在线观看| 欧美亚洲国产bt| 99久久精品久久久久久清纯| 麻豆成人在线观看| 亚洲激情一二三区| 亚洲欧洲日产国产综合网| 精品久久久影院| 91精品在线免费| 欧美亚洲图片小说| 91在线视频播放| 丁香亚洲综合激情啪啪综合| 久久国内精品自在自线400部| 亚洲成人动漫av| 亚洲一区在线看| 亚洲免费看黄网站| 亚洲视频一区二区在线| 国产免费久久精品| 国产精品毛片无遮挡高清| 日韩精品在线网站| 6080午夜不卡| 欧美日本视频在线| 欧美日韩一区二区在线观看视频| 中文字幕中文乱码欧美一区二区| 日韩精品最新网址| 日韩一级欧美一级| av在线不卡电影| 成人精品视频一区| av在线免费不卡| 97久久超碰国产精品| 99精品欧美一区二区三区小说 | 久久综合九色综合欧美亚洲| 日韩视频免费直播| 日韩免费高清视频| 久久影院电视剧免费观看| 久久嫩草精品久久久精品一| 久久免费的精品国产v∧| 精品国产一区久久| 国产欧美日韩不卡免费| 国产精品视频九色porn| 专区另类欧美日韩| 亚洲一区二区视频在线观看| 亚洲观看高清完整版在线观看| 香蕉影视欧美成人| 麻豆国产精品官网| 国产 日韩 欧美大片| 北岛玲一区二区三区四区| 91蝌蚪porny九色| 欧美午夜影院一区| 日韩一区二区三区视频在线| 精品国产乱码久久久久久久| 国产亚洲欧美激情| 亚洲欧美另类图片小说| 成人av在线影院| 在线观看成人小视频| 91精品综合久久久久久| 久久久不卡网国产精品二区| 国产精品久久久久久亚洲伦| 亚洲成va人在线观看| 久久草av在线| 99国产精品视频免费观看| 欧美日韩一区二区三区四区五区| 日韩视频免费观看高清完整版| 国产午夜精品一区二区三区视频| 亚洲欧美偷拍另类a∨色屁股| 首页综合国产亚洲丝袜| 国产伦精品一区二区三区视频青涩| av电影在线不卡| 欧美一区二区视频在线观看 | 欧美精品视频www在线观看| 精品精品国产高清一毛片一天堂| 中文一区二区完整视频在线观看| 亚洲一区二区在线视频| 欧美哺乳videos| 综合久久国产九一剧情麻豆| 蜜臀av性久久久久av蜜臀妖精| 国产成人av电影在线| 在线不卡一区二区| 国产精品欧美极品| 美国欧美日韩国产在线播放| 99精品视频在线观看| 精品99999| 亚洲va中文字幕| 成人开心网精品视频| 欧美一级在线视频| 一区二区三区中文在线观看| 久久精品国产成人一区二区三区| 91麻豆福利精品推荐| 国产午夜精品一区二区三区四区| 午夜精品福利一区二区蜜股av| 成人综合在线网站| 日韩欧美不卡在线观看视频| 一区二区三区四区av| 丰满亚洲少妇av| 欧美zozozo| 亚洲国产精品一区二区www| 成人爱爱电影网址| wwww国产精品欧美| 日韩电影在线一区二区三区| 91传媒视频在线播放| 国产精品久久久久四虎| 国产精品自在在线| 精品国产污污免费网站入口| 日产国产欧美视频一区精品| 欧美亚洲禁片免费| 亚洲精品成a人| 91日韩精品一区| 中文字幕人成不卡一区| 国产成人精品一区二| 久久久三级国产网站| 久久99久久久欧美国产| 日韩一区二区三区电影在线观看 | 欧美丰满高潮xxxx喷水动漫| 伊人婷婷欧美激情| 99久久99久久免费精品蜜臀| 久久精品人人爽人人爽| 国产老女人精品毛片久久| 亚洲精品在线三区| 精品在线播放免费| 日韩免费视频线观看| 蜜桃视频一区二区三区在线观看| 日韩一区二区三区电影在线观看| 日韩激情视频在线观看| 欧美一区二区黄| 免费成人在线播放| 精品日韩一区二区三区免费视频| 蜜臀av一区二区在线观看| 日韩免费看的电影| 国产在线视频不卡二| 欧美激情综合五月色丁香| 成人午夜av电影| 亚洲精选在线视频| 欧美三级电影在线看| 日本vs亚洲vs韩国一区三区二区| 这里是久久伊人| 国产一区日韩二区欧美三区| 欧美国产亚洲另类动漫| 成人ar影院免费观看视频| 亚洲欧美激情小说另类| 欧美午夜一区二区三区免费大片| 午夜激情综合网| 精品国产伦一区二区三区免费| 国产一区二区三区综合| 加勒比av一区二区| 中文字幕+乱码+中文字幕一区| 91偷拍与自偷拍精品| 亚洲v中文字幕| 久久综合九色综合欧美就去吻| 成人黄色网址在线观看| 亚洲国产日日夜夜| 日韩亚洲欧美在线| 成人免费视频播放| 天天色天天操综合| 国产欧美视频一区二区三区|