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

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

?? spring-aop-2.5.xsd

?? spring-framework-2.5.2.zip
?? XSD
字號(hào):
<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<xsd:schema xmlns="http://www.springframework.org/schema/aop"
		xmlns:xsd="http://www.w3.org/2001/XMLSchema"
		xmlns:beans="http://www.springframework.org/schema/beans"
		xmlns:tool="http://www.springframework.org/schema/tool"
		targetNamespace="http://www.springframework.org/schema/aop"
		elementFormDefault="qualified"
		attributeFormDefault="unqualified">

	<xsd:import namespace="http://www.springframework.org/schema/beans"/>
	<xsd:import namespace="http://www.springframework.org/schema/tool"/>

	<xsd:annotation>
		<xsd:documentation><![CDATA[
	Defines the configuration elements for the Spring Framework's AOP support.
		]]></xsd:documentation>
	</xsd:annotation>

	<xsd:element name="config">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	A section (compartmentalization) of AOP-specific configuration (including
	aspects, pointcuts, etc).
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="pointcut" type="pointcutType" minOccurs="0" maxOccurs="unbounded">
					<xsd:annotation>
						<xsd:documentation><![CDATA[
	A named pointcut definition.
						]]></xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="advisor" type="advisorType" minOccurs="0" maxOccurs="unbounded">
					<xsd:annotation>
						<xsd:documentation source="java:org.springframework.aop.Advisor"><![CDATA[
	A named advisor definition.
						]]></xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="aspect" type="aspectType" minOccurs="0" maxOccurs="unbounded">
					<xsd:annotation>
						<xsd:documentation><![CDATA[
	A named aspect definition.
						]]></xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:sequence>
			<xsd:attribute name="proxy-target-class" type="xsd:boolean" default="false">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	Are class-based (CGLIB) proxies to be created? By default, standard
	Java interface-based proxies are created.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="aspectj-autoproxy">
		<xsd:annotation>
			<xsd:documentation source="java:org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator"><![CDATA[
	Enables the use of the @AspectJ style of Spring AOP.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="include" type="includeType" minOccurs="0" maxOccurs="unbounded">
					<xsd:annotation>
						<xsd:documentation><![CDATA[
	Indicates that only @AspectJ beans with names matched by the (regex)
	pattern will be considered as defining aspects to use for Spring autoproxying.
						]]></xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:sequence>
			<xsd:attribute name="proxy-target-class" type="xsd:boolean" default="false">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	Are class-based (CGLIB) proxies to be created? By default, standard
	Java interface-based proxies are created.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="scoped-proxy">
		<xsd:complexType>
			<xsd:annotation>
				<xsd:documentation source="java:org.springframework.aop.scope.ScopedProxyFactoryBean"><![CDATA[
		Marks a bean definition as being a scoped proxy.

		A bean marked as such will be exposed via a proxy, with the 'real'
		bean instance being retrieved from some other source (such as a
		HttpSession) as and when required.
				]]></xsd:documentation>
			</xsd:annotation>
			<xsd:attribute name="proxy-target-class" type="xsd:boolean" default="true">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	Are class-based (CGLIB) proxies to be created? This is the default; in order to
	switch to standard Java interface-based proxies, turn this flag to "false".
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
		</xsd:complexType>
	</xsd:element>

	<xsd:complexType name="aspectType">
		<xsd:choice minOccurs="0" maxOccurs="unbounded">
			<xsd:element name="pointcut" type="pointcutType">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	A named pointcut definition.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="declare-parents" type="declareParentsType">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	Allows this aspect to introduce additional interfaces that the advised
	object will transparently implement.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="before" type="basicAdviceType">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	A before advice definition.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="after" type="basicAdviceType">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	An after advice definition.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="after-returning" type="afterReturningAdviceType">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	An after-returning advice definition.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="after-throwing" type="afterThrowingAdviceType">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	An after-throwing advice definition.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="around" type="basicAdviceType">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	An around advice definition.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:choice>
		<xsd:attribute name="id" type="xsd:ID">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The unique identifier for an aspect.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="ref" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The name of the (backing) bean that encapsulates the aspect.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="order" type="xsd:int">
			<xsd:annotation>
				<xsd:documentation source="java:org.springframework.core.Ordered"><![CDATA[
	Controls the ordering of the execution of this aspect when multiple
	advice executes at a specific joinpoint.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<xsd:complexType name="includeType">
		<xsd:attribute name="name" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation source="java:java.util.regex.Pattern"><![CDATA[
	The regular expression defining which beans are to be included in the
	list of @AspectJ beans; beans with names matched by the pattern will
	be included.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<xsd:complexType name="pointcutType">
		<xsd:annotation>
			<xsd:appinfo>
				<tool:annotation>
					<tool:exports type="org.springframework.aop.Pointcut"/>
				</tool:annotation>
			</xsd:appinfo>
		</xsd:annotation>
		<xsd:attribute name="id" type="xsd:ID" use="required">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The unique identifier for a pointcut.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="expression" use="required" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The pointcut expression.
	
	For example : 'execution(* com.xyz.myapp.service.*.*(..))'
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<xsd:complexType name="declareParentsType">
		<xsd:attribute name="types-matching" type="xsd:string" use="required">
			<xsd:annotation>
				<xsd:documentation source="java:org.springframework.aop.aspectj.TypePatternClassFilter"><![CDATA[
	The AspectJ type expression that defines what types (classes) the
	introduction is restricted to.

	An example would be 'org.springframework.beans.ITestBean+'.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="implement-interface" type="xsd:string" use="required">
			<xsd:annotation>
				<xsd:documentation source="java:java.lang.Class"><![CDATA[
	The fully qualified name of the interface that will be introduced. 
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="default-impl" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation source="java:java.lang.Class"><![CDATA[
	The fully qualified name of the class that will be instantiated to serve
	as the default implementation of the introduced interface. 
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="delegate-ref" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A reference to the bean that will serve 
	as the default implementation of the introduced interface.
				]]></xsd:documentation>
				<xsd:appinfo>
					<tool:annotation kind="ref"/>
				</xsd:appinfo>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<xsd:complexType name="basicAdviceType">
		<xsd:attribute name="pointcut" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The associated pointcut expression.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="pointcut-ref" type="pointcutRefType">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The name of an associated pointcut definition.
				]]></xsd:documentation>
				<xsd:appinfo>
					<tool:annotation kind="ref">
						<tool:expected-type type="org.springframework.aop.Pointcut"/>
					</tool:annotation>
				</xsd:appinfo>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="method" type="xsd:string" use="required">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The name of the method that defines the logic of the advice.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="arg-names" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The comma-delimited list of advice method argument (parameter) names 
	that will be matched from pointcut parameters.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<xsd:complexType name="afterReturningAdviceType">
		<xsd:complexContent>
			<xsd:extension base="basicAdviceType">
				<xsd:attribute name="returning" type="xsd:string">
					<xsd:annotation>
						<xsd:documentation><![CDATA[
	The name of the method parameter to which the return value must
	be passed.
						]]></xsd:documentation>
					</xsd:annotation>
				</xsd:attribute>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="afterThrowingAdviceType">
		<xsd:complexContent>
			<xsd:extension base="basicAdviceType">
				<xsd:attribute name="throwing" type="xsd:string">
					<xsd:annotation>
						<xsd:documentation><![CDATA[
	The name of the method parameter to which the thrown exception must
	be passed.	
						]]></xsd:documentation>
					</xsd:annotation>
				</xsd:attribute>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="advisorType">
		<xsd:annotation>
			<xsd:appinfo>
				<tool:annotation>
					<tool:exports type="org.springframework.aop.Advisor"/>
				</tool:annotation>
			</xsd:appinfo>
		</xsd:annotation>
		<!-- Rick : ID type written explicitly as opposed to being imported (c.f. [SPR-2290] -->
		<xsd:attribute name="id" type="xsd:ID"/>
		<xsd:attribute name="advice-ref" type="xsd:string" use="required">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A reference to an advice bean.
				]]></xsd:documentation>
				<xsd:appinfo>
					<tool:annotation kind="ref">
						<tool:expected-type type="org.aopalliance.aop.Advice"/>
					</tool:annotation>
				</xsd:appinfo>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="pointcut" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A pointcut expression.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="pointcut-ref" type="pointcutRefType">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A reference to a pointcut definition.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="order" type="xsd:int">
			<xsd:annotation>
				<xsd:documentation source="java:org.springframework.core.Ordered"><![CDATA[
	Controls the ordering of the execution of this advice when multiple
	advice executes at a specific joinpoint.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<xsd:simpleType name="pointcutRefType">
		<xsd:annotation>
			<xsd:appinfo>
				<tool:annotation kind="ref">
					<tool:expected-type type="org.springframework.aop.Pointcut"/>
				</tool:annotation>
			</xsd:appinfo>
		</xsd:annotation>
		<xsd:union memberTypes="xsd:string"/>
	</xsd:simpleType>

</xsd:schema>

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲色图都市小说| 国产欧美日韩综合| 国产欧美一区二区三区沐欲| 天天色天天操综合| 成人免费观看av| 久久久亚洲精华液精华液精华液| 亚洲成a天堂v人片| 国产成人av电影在线观看| 欧美一区二区三区精品| 亚洲aaa精品| 色综合久久天天综合网| 26uuu亚洲| 免费看日韩a级影片| 欧美日韩免费观看一区二区三区| 国产精品二三区| 国产99久久精品| 午夜久久久久久久久| 久久99九九99精品| 91麻豆精品91久久久久同性| 亚洲制服丝袜在线| 色女孩综合影院| 136国产福利精品导航| www.激情成人| 97精品国产97久久久久久久久久久久| 偷拍一区二区三区四区| 欧美午夜宅男影院| 国产成人啪午夜精品网站男同| 国产区在线观看成人精品| 欧洲av一区二区嗯嗯嗯啊| 国产一区二区精品久久91| 日韩三级视频在线看| 欧美性三三影院| 精品一区二区三区免费| 亚洲中国最大av网站| 久久久久综合网| 欧美日韩激情一区二区三区| 粗大黑人巨茎大战欧美成人| 亚洲在线免费播放| 欧美国产97人人爽人人喊| 91污片在线观看| 国产一区二区在线观看免费 | 欧美中文字幕久久| 蜜桃视频在线观看一区| 1024精品合集| 国产日韩欧美在线一区| 91精品国产91热久久久做人人| 色婷婷综合视频在线观看| 成人免费黄色在线| 九九视频精品免费| 日韩电影在线观看电影| 亚洲欧洲av另类| 国产精品久久久久久亚洲毛片| 91精品福利在线一区二区三区| 国产精品一区二区你懂的| 亚洲第一成人在线| 亚洲综合一区二区| 亚洲视频每日更新| 亚洲六月丁香色婷婷综合久久| 国产婷婷色一区二区三区四区 | 欧洲国内综合视频| 国产成人免费9x9x人网站视频| 亚洲美女在线一区| 偷窥少妇高潮呻吟av久久免费| 美腿丝袜亚洲一区| 久久精品国产**网站演员| 奇米精品一区二区三区在线观看一 | 免费欧美在线视频| 波多野结衣在线aⅴ中文字幕不卡| 91在线观看一区二区| 欧洲视频一区二区| 欧美日韩精品欧美日韩精品一综合| 91精品久久久久久蜜臀| 欧美成人一区二区三区片免费| 久久久精品2019中文字幕之3| 中文字幕精品综合| 美女任你摸久久| www.日韩av| 日韩一区二区三区精品视频 | 国产精品国产三级国产a| 亚洲成国产人片在线观看| 粉嫩嫩av羞羞动漫久久久| 在线观看91av| 中文字幕一区二区三区精华液| 亚洲一区二区三区在线看| 国内精品在线播放| 91小视频在线观看| 国产欧美视频一区二区三区| 日本成人在线不卡视频| 99视频超级精品| 日韩午夜激情av| 五月天欧美精品| 91片黄在线观看| 国产欧美日韩麻豆91| 黑人巨大精品欧美黑白配亚洲| 在线观看亚洲精品| 首页国产丝袜综合| 成人午夜精品在线| 欧美变态tickle挠乳网站| 亚洲影视在线播放| 色香蕉成人二区免费| 久久先锋影音av鲁色资源| 久久青草国产手机看片福利盒子 | 欧美狂野另类xxxxoooo| 亚洲精品高清视频在线观看| 91蝌蚪porny九色| 国产精品毛片高清在线完整版| 丁香婷婷综合色啪| 国产精品每日更新在线播放网址| 国产一区二区三区四区五区美女| 日韩精品一区二区三区四区| 日韩高清国产一区在线| 欧美日韩美少妇| 蜜臀va亚洲va欧美va天堂| 欧美日韩色综合| 青青草国产精品97视觉盛宴| 欧美一区二区福利视频| 蜜臀av一级做a爰片久久| 亚洲精品在线免费观看视频| 日本不卡视频一二三区| 欧美v日韩v国产v| 丁香激情综合国产| 亚洲图片你懂的| 欧美日韩激情一区二区三区| 奇米色777欧美一区二区| www国产亚洲精品久久麻豆| 99在线精品观看| 亚洲欧美日韩一区二区三区在线观看| 成人福利视频网站| 亚洲一区二区三区爽爽爽爽爽| 日韩欧美国产系列| 99在线精品视频| 婷婷激情综合网| 国产精品日韩成人| 欧美人牲a欧美精品| 国产成人午夜视频| 亚洲不卡一区二区三区| 久久久亚洲综合| 欧美猛男gaygay网站| 国产成人在线视频免费播放| 亚洲激情自拍视频| 国产亚洲成av人在线观看导航| 色综合一个色综合亚洲| 欧美一级在线观看| 成人免费黄色大片| 久久99热99| 亚洲国产日日夜夜| 国产精品毛片久久久久久| 91精品国产综合久久婷婷香蕉 | 麻豆国产精品一区二区三区| 亚洲精品视频在线观看网站| 久久久影视传媒| 91精品视频网| 欧美日韩国产三级| 欧美性猛片aaaaaaa做受| 成人福利视频在线看| 国产成人精品综合在线观看| 日韩电影网1区2区| 午夜精品福利一区二区三区av| 亚洲视频在线观看一区| 国产清纯白嫩初高生在线观看91 | 国产一区二区三区在线观看免费视频 | 欧美tk—视频vk| 51精品国自产在线| 日韩一区二区精品| 欧美一区二区二区| 日韩一区二区三区视频在线观看| 日韩一区二区在线看片| 欧美亚洲一区二区三区四区| 99re这里都是精品| 色哟哟国产精品免费观看| 93久久精品日日躁夜夜躁欧美| 丁香激情综合五月| 91麻豆精品在线观看| 99久久伊人网影院| 色狠狠色噜噜噜综合网| 色成年激情久久综合| 91在线免费看| 91电影在线观看| 7777精品伊人久久久大香线蕉超级流畅| 欧美精品亚洲二区| 欧美不卡一区二区三区四区| 久久夜色精品一区| 亚洲四区在线观看| 日韩成人一级片| 美女任你摸久久| 欧美日韩一级片在线观看| 日韩欧美成人一区二区| 国产精品久久久99| 午夜私人影院久久久久| 九九精品一区二区| 成人黄色免费短视频| 欧美视频一区在线| 久久精品一区二区三区四区| 自拍偷拍欧美激情| 免费视频最近日韩| 99久久er热在这里只有精品15 | 国产精品免费视频观看| 亚洲激情自拍视频| 国产精选一区二区三区| 欧美日韩一区二区在线观看|