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

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

?? spring-aop-2.0.xsd

?? Spring API核心源代碼 Spring API核心源代碼 Spring API核心源代碼
?? XSD
字號:
<?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:element name="spring-configured">
		<xsd:annotation>
			<xsd:documentation source="java:org.springframework.beans.factory.aspectj.AnnotationBeanConfigurerAspect"><![CDATA[
	Signals the current application context to apply dependency injection
	to non-managed objects that are instantiated outside of the Spring bean
	factory (typically classes annotated with the @Configurable annotation).
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:simpleType>
			<xsd:restriction base="xsd:string"/>
		</xsd:simpleType>
	</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">
			<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:attribute name="type" default="aspectj">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The type of pointcut expression (see the associated enumeration).
				]]></xsd:documentation>
			</xsd:annotation>
			<xsd:simpleType>
				<xsd:restriction base="xsd:string">
					<xsd:enumeration value="aspectj"/>
					<xsd:enumeration value="regex"/>
				</xsd:restriction>
			</xsd:simpleType>
		</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" use="required">
			<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: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.springframework.aop.Advisor"/>
					</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>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美亚洲丝袜传媒另类| 欧美色男人天堂| 亚洲一区二区黄色| 久久久美女毛片| 欧美乱妇23p| 91色porny蝌蚪| 国产在线精品一区在线观看麻豆| 亚洲综合无码一区二区| 国产欧美一区二区在线| 欧美成人video| 欧美色手机在线观看| 不卡的av在线播放| 国产一区二区调教| 日本不卡的三区四区五区| 亚洲精品免费视频| 中文字幕免费一区| 国产亚洲综合av| 精品国产网站在线观看| 欧美日韩aaa| av一区二区三区四区| 国产精品99精品久久免费| 日日夜夜精品视频免费| 亚洲三级免费电影| 国产女人18水真多18精品一级做| 这里只有精品电影| 91久久奴性调教| 成+人+亚洲+综合天堂| 国产精品综合二区| 日韩精品电影一区亚洲| 一区二区日韩av| 亚洲免费观看视频| 亚洲天堂2014| 国产精品久久免费看| 中文字幕精品三区| 精品久久五月天| 日韩欧美中文字幕制服| 91精品国产麻豆国产自产在线| 色八戒一区二区三区| 99热99精品| 不卡av在线免费观看| 国产成人av电影在线播放| 国产精品99久久久久久有的能看 | 日韩精品乱码免费| 亚洲精品久久久久久国产精华液| 亚洲人成小说网站色在线 | 日韩午夜激情av| 欧美久久久久久久久| 91精品国产综合久久久久| 欧美日韩不卡一区二区| 8x8x8国产精品| 日韩一区二区在线看| 日韩三级中文字幕| 欧美大片一区二区| 日韩精品在线一区| 2024国产精品| 国产欧美日韩在线看| 中文字幕在线不卡国产视频| 中文字幕字幕中文在线中不卡视频| 中文字幕一区在线| 亚洲精品久久7777| 丝袜诱惑亚洲看片| 狠狠久久亚洲欧美| 成人午夜免费av| 色8久久人人97超碰香蕉987| 欧美三级日韩在线| 日韩免费成人网| 久久精品视频免费| 亚洲蜜臀av乱码久久精品蜜桃| 亚洲乱码国产乱码精品精可以看| 亚洲激情av在线| 午夜不卡av免费| 看片的网站亚洲| 国产成人精品免费| 欧美性大战xxxxx久久久| 欧美一区二区三区喷汁尤物| 精品国产一区二区在线观看| 国产色产综合产在线视频| 国产精品乱码一区二三区小蝌蚪| 樱花草国产18久久久久| 视频在线在亚洲| 成人一道本在线| 精品视频1区2区| wwwwww.欧美系列| 国产精品电影一区二区三区| 亚洲电影第三页| 国产精品亚洲午夜一区二区三区| 99久久久久免费精品国产| 欧美日韩一区二区三区视频| 26uuu国产日韩综合| 尤物av一区二区| 黄页网站大全一区二区| 97久久精品人人爽人人爽蜜臀| 欧美日韩国产一级二级| 欧美国产欧美亚州国产日韩mv天天看完整| 亚洲永久精品国产| 国产精品一区二区91| 日本高清无吗v一区| 精品久久免费看| 亚洲品质自拍视频网站| 久久99热这里只有精品| 91免费看视频| 日韩欧美成人午夜| 日韩毛片在线免费观看| 老司机免费视频一区二区| 91久久久免费一区二区| 久久久久久久久久看片| 亚洲成人自拍偷拍| 成人免费高清视频在线观看| 制服丝袜亚洲色图| 亚洲欧美成人一区二区三区| 国产美女精品人人做人人爽| 69成人精品免费视频| 亚洲精品免费看| 91在线视频网址| 国产精品天干天干在观线 | 日本韩国欧美在线| 国产精品久久久久久久浪潮网站 | 欧美色欧美亚洲另类二区| 国产精品二三区| 国产成人精品午夜视频免费| wwww国产精品欧美| 久久爱另类一区二区小说| 欧美一区三区四区| 亚洲午夜av在线| 欧美在线影院一区二区| 亚洲人成小说网站色在线 | 午夜精品久久久久久| 色噜噜狠狠成人中文综合 | 精东粉嫩av免费一区二区三区| 欧美日本国产一区| 婷婷综合另类小说色区| 欧美四级电影网| 亚洲国产成人porn| 欧美日韩国产高清一区二区三区| 亚洲一区在线播放| 欧美日韩不卡在线| 天天色图综合网| 91精品国产综合久久福利软件 | 国产精品人人做人人爽人人添| 国产伦精品一区二区三区免费迷 | 在线视频一区二区三区| 一区二区三区四区激情 | 欧美午夜电影在线播放| 亚洲精选在线视频| 欧美三级一区二区| 日本va欧美va精品| 亚洲精品一区二区三区在线观看 | 中文字幕在线观看一区二区| 99视频精品全部免费在线| 亚洲视频一二区| 在线观看国产91| 日本不卡1234视频| 国产亚洲短视频| av亚洲精华国产精华精| 亚洲精品免费电影| 日韩一区二区精品在线观看| 激情小说欧美图片| 日本一区二区三区免费乱视频 | 日韩视频中午一区| 国产精品18久久久| 亚洲三级视频在线观看| 欧美一区二区三区四区视频| 国产制服丝袜一区| 国产精品美女久久久久av爽李琼| 色吊一区二区三区| 久久99国产乱子伦精品免费| 欧美激情中文字幕一区二区| 色综合 综合色| 免费一区二区视频| 国产精品乱码人人做人人爱 | 中文字幕在线观看一区| 欧美人与z0zoxxxx视频| 国产一区二区三区香蕉| 一区二区在线免费| 精品精品欲导航| 99国产精品99久久久久久| 日韩主播视频在线| 欧美经典一区二区三区| 欧美日韩国产不卡| 成人在线综合网站| 五月天激情综合| 国产欧美综合在线观看第十页| 欧美日韩一级大片网址| 福利一区在线观看| 日本午夜精品一区二区三区电影| 久久精品无码一区二区三区| 欧美天堂一区二区三区| 国产精品主播直播| 日本最新不卡在线| 亚洲视频一区二区在线观看| 欧美videos大乳护士334| 91麻豆精品视频| 韩日精品视频一区| 亚洲成人av福利| 亚洲日本在线a| 久久天天做天天爱综合色| 欧美卡1卡2卡| 一本大道久久a久久综合| 国产精品69毛片高清亚洲| 麻豆精品一区二区三区|