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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? spring-aop-2.0.xsd

?? 網(wǎng)上拍賣系統(tǒng)
?? 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 used in the Spring Framework's
	AOP technology.
		]]></xsd:documentation>
	</xsd:annotation>

	<xsd:element name="config">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	A section (compartmentalization) of AOP-specific configuration (incl.
	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="spring-configured">
		<xsd:annotation>
			<xsd:documentation source="java:org.springframework.beans.factory.aspectj.AnnotationBeanConfigurerAspect"><![CDATA[
	Signals the container to effect the dependency injection of discrete
	objects (typically - but not limited to - those classes annotated
	with the @Configurable annotation).
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:simpleType>
			<xsd:restriction base="xsd:string"/>
		</xsd:simpleType>
	</xsd:element>

	<xsd:element name="scoped-proxy">
		<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:simpleType>
			<xsd:restriction base="xsd:string"/>
		</xsd:simpleType>
	</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 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:complexType name="aspectType">
		<xsd:sequence>
			<xsd:element name="pointcut" type="pointcutType" minOccurs="0" maxOccurs="1">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	A named pointcut definition.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="declare-parents" type="declareParentsType" minOccurs="0" maxOccurs="unbounded">
				<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:choice minOccurs="0" maxOccurs="unbounded">
				<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:sequence>
		<!-- Rick : ID type written explicitly as opposed to being imported (c.f. [SPR-2290] -->
		<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: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>
		<!-- Rick : ID type written explicitly as opposed to being imported (c.f. [SPR-2290] -->
		<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>
		<!-- there is a case to make this next one an element with one sub-element for each
			argument name, but that is a lot more verbose that a comma-delimited list of arg names -->
		<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>

	<!-- Base Types -->
	<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>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲专区一二三| 国产精品无圣光一区二区| 久久精品视频网| 91麻豆免费观看| 亚洲动漫第一页| 亚洲人吸女人奶水| 亚洲欧美日韩在线| 一区二区三区四区在线播放| 亚洲欧美国产77777| 亚洲黄一区二区三区| 一区二区激情视频| 亚洲国产精品久久久男人的天堂| 成人免费在线观看入口| 日韩一区日韩二区| 亚洲国产视频在线| 天天综合色天天| 日本一道高清亚洲日美韩| 久久国产精品99久久人人澡| 老司机免费视频一区二区三区| 亚洲成人动漫在线观看| 日韩精品亚洲专区| 精品中文av资源站在线观看| 国产成人综合亚洲网站| 粉嫩在线一区二区三区视频| 成人在线视频一区| 色猫猫国产区一区二在线视频| 在线视频一区二区免费| 欧美日韩aaa| 777午夜精品视频在线播放| 日韩视频中午一区| 国产片一区二区三区| 国产精品国产成人国产三级| 亚洲免费在线观看视频| 五月天精品一区二区三区| 精品一区二区三区在线观看国产| 国产成人av自拍| 91视频一区二区| 欧美精品99久久久**| 精品盗摄一区二区三区| 国产免费成人在线视频| 亚洲一区二区在线免费观看视频| 日韩高清一区在线| 国产不卡视频在线观看| 91在线看国产| 678五月天丁香亚洲综合网| 久久综合色鬼综合色| 亚洲色图20p| 日韩成人精品在线| 国产成人精品免费在线| 欧美网站大全在线观看| 在线不卡免费av| 久久久久久久久99精品| 亚洲一区二区三区中文字幕在线| 极品瑜伽女神91| 91视频免费观看| 欧美v亚洲v综合ⅴ国产v| 国产精品夫妻自拍| 五月天中文字幕一区二区| 国产夫妻精品视频| 欧美网站大全在线观看| 国产精品美日韩| 毛片不卡一区二区| 欧美在线视频你懂得| 国产日韩欧美在线一区| 日本最新不卡在线| 99视频一区二区| 精品福利一区二区三区免费视频| 亚洲图片欧美一区| av电影在线观看不卡| 久久综合久久99| 日韩精品欧美精品| 色婷婷综合久久久中文一区二区| 欧美精品一区在线观看| 婷婷国产在线综合| 一本到不卡免费一区二区| 国产欧美日韩精品在线| 久久狠狠亚洲综合| 91精品国产手机| 亚洲国产日韩综合久久精品| 成人国产精品免费观看视频| 欧美r级在线观看| 五月婷婷综合激情| 欧美日韩在线播放三区| 亚洲日本一区二区| av电影在线观看不卡| 国产日韩欧美精品一区| 国产精品自拍在线| 精品av久久707| 麻豆精品视频在线观看视频| 69久久99精品久久久久婷婷| 亚洲444eee在线观看| 在线视频一区二区免费| 一区二区三区在线视频播放| 色一区在线观看| 18欧美亚洲精品| 成人午夜免费电影| 国产女主播一区| 成人a区在线观看| 国产精品国产自产拍高清av| 国产aⅴ精品一区二区三区色成熟| 26uuu色噜噜精品一区二区| 久久99精品国产91久久来源| 欧美一卡在线观看| 精品一区二区三区欧美| 欧美大片一区二区| 狠狠色丁香婷婷综合| 亚洲午夜久久久久久久久久久 | 国产成人亚洲精品狼色在线| 日韩精品一区二区三区中文不卡 | 亚洲欧美在线视频| 91美女片黄在线观看91美女| 国产精品高潮呻吟久久| 91蝌蚪porny九色| 一区二区在线观看av| 欧美唯美清纯偷拍| 日韩中文字幕不卡| 欧美白人最猛性xxxxx69交| 国产一区二区三区精品欧美日韩一区二区三区| 日韩亚洲欧美在线| 国产一区二区三区四区五区入口| 久久夜色精品一区| 国产99久久久久| 亚洲美女免费视频| 欧美久久婷婷综合色| 九九视频精品免费| 国产精品女上位| 欧美亚洲一区二区在线观看| 日韩精品乱码av一区二区| 精品少妇一区二区三区在线播放| 国产一区二区影院| 亚洲婷婷综合久久一本伊一区| 欧美中文字幕一二三区视频| 日本美女一区二区| 国产精品无码永久免费888| 91农村精品一区二区在线| 日韩 欧美一区二区三区| 久久精品在这里| 色av一区二区| 美女视频网站黄色亚洲| 中文字幕巨乱亚洲| 欧美日韩免费在线视频| 精品一区二区在线免费观看| 中文字幕日韩av资源站| 欧美狂野另类xxxxoooo| 国产91对白在线观看九色| 亚洲小说欧美激情另类| 久久色视频免费观看| 欧美系列一区二区| 国产盗摄一区二区| 亚洲成人av免费| 亚洲国产精品ⅴa在线观看| 欧美日韩午夜影院| 不卡视频在线观看| 免费欧美日韩国产三级电影| 国产精品高潮呻吟久久| 欧美电影免费提供在线观看| www.一区二区| 日韩黄色免费电影| 国产精品色哟哟网站| 欧美三级三级三级| 成人午夜精品一区二区三区| 日韩高清国产一区在线| 成人免费一区二区三区视频| 精品国产1区二区| 欧美日本在线看| 色欲综合视频天天天| 国产精品亚洲综合一区在线观看| 亚洲va欧美va天堂v国产综合| 中文字幕乱码亚洲精品一区| 日韩精品一区二区在线| 欧美视频在线观看一区二区| 日韩一区二区三区观看| 久久国产免费看| 成人美女在线视频| 欧美日韩mp4| 日本福利一区二区| 国产黄色精品网站| 日本在线不卡一区| 亚洲一区二区视频在线| 国产精品久久精品日日| 精品欧美久久久| 91麻豆精品国产91久久久久久| 91亚洲精华国产精华精华液| 国产一区三区三区| 免费成人在线视频观看| 一区二区三区波多野结衣在线观看 | 国产成人免费视频精品含羞草妖精 | 亚洲国产日日夜夜| 亚洲日本一区二区三区| 国产精品萝li| 国产欧美久久久精品影院| 久久夜色精品国产噜噜av| 久久精品亚洲国产奇米99| 91麻豆精品国产91| 欧美天堂亚洲电影院在线播放| av电影在线观看完整版一区二区| 国产高清精品在线| 九色综合国产一区二区三区| 国产综合久久久久久鬼色| 久久99国产精品久久|