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

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

?? spring-aop-2.0.xsd

?? 一款仿msdn聊天程序,用java編寫,很好用!
?? 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 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: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>
		<!-- 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: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>
		<!-- 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>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产视频在线观看一区二区三区| 爽爽淫人综合网网站| 三级不卡在线观看| 成人黄色国产精品网站大全在线免费观看 | 日韩一级二级三级| 成人欧美一区二区三区白人| 久久精品国产一区二区三区免费看| 成人免费毛片高清视频| 欧美zozo另类异族| 午夜精品一区二区三区三上悠亚| av亚洲精华国产精华精华| 日韩三级在线免费观看| 亚洲风情在线资源站| 色天使色偷偷av一区二区| 国产欧美视频在线观看| 精品一区二区在线播放| 日韩一级在线观看| 亚洲成人免费在线| 欧美日韩精品一区二区| 亚洲免费观看高清完整版在线观看熊| 国产精品伊人色| 久久午夜老司机| 久久精品国产精品亚洲综合| 3751色影院一区二区三区| 亚洲激情中文1区| 欧洲国内综合视频| 一区二区三区欧美激情| www.亚洲免费av| 欧美国产精品一区| av不卡免费在线观看| 国产精品三级av在线播放| 国产成人在线影院| 久久精品视频一区二区三区| 国产在线一区二区| 国产亚洲一区二区三区| 国产99久久精品| 国产农村妇女毛片精品久久麻豆 | 亚洲大型综合色站| 欧美日韩精品福利| 美腿丝袜亚洲综合| 欧美变态tickling挠脚心| 麻豆精品久久精品色综合| 精品欧美一区二区久久| 国产一区二区三区电影在线观看 | 777午夜精品免费视频| 午夜天堂影视香蕉久久| 日韩欧美国产一区二区三区 | 日本特黄久久久高潮| 日韩免费高清视频| 国产精品77777竹菊影视小说| 国产清纯在线一区二区www| 99国产精品99久久久久久| 亚洲免费观看高清完整版在线 | 丝袜美腿亚洲一区二区图片| 欧美电影免费观看完整版| 国产成人在线视频播放| 亚洲乱码国产乱码精品精小说 | 国产精品灌醉下药二区| 91久久精品一区二区二区| 热久久久久久久| 国产精品欧美综合在线| 欧美日韩日日骚| 国产ts人妖一区二区| 亚洲黄色免费电影| 欧美成人a∨高清免费观看| 国产成人鲁色资源国产91色综| 亚洲欧美另类小说| 日韩精品一区在线| 在线视频一区二区三| 狠狠色丁香九九婷婷综合五月| 亚洲情趣在线观看| 日韩精品一区二区三区四区视频| 北条麻妃国产九九精品视频| 日韩一区精品视频| 国产精品久久久久精k8| 日韩美女视频一区二区在线观看| 97久久超碰精品国产| 极品销魂美女一区二区三区| 亚洲免费观看高清在线观看| 久久综合久久99| 欧美揉bbbbb揉bbbbb| av电影在线观看一区| 免费日本视频一区| 一区二区三区四区在线播放| 久久精品视频免费| 91精品在线麻豆| 日本精品视频一区二区| 国产精品91一区二区| 麻豆91在线播放| 五月婷婷色综合| 亚洲精品乱码久久久久久久久| 亚洲精品一区二区三区福利| 欧美精品第一页| 精品视频999| 色综合久久中文综合久久97| 国产成人精品一区二| 久久精品国产第一区二区三区| 亚洲妇熟xx妇色黄| 亚洲午夜羞羞片| 一区二区在线看| 国产精品久久国产精麻豆99网站 | 国产精品一区二区在线看| 日本不卡中文字幕| 天天影视涩香欲综合网| 亚洲精品免费看| 亚洲激情图片一区| 亚洲精品精品亚洲| 亚洲免费观看高清完整版在线观看| 国产农村妇女毛片精品久久麻豆| 2020国产精品自拍| 26uuu欧美| 国产亚洲午夜高清国产拍精品| 精品国产污污免费网站入口| 欧美大肚乱孕交hd孕妇| 日韩久久精品一区| 久久免费精品国产久精品久久久久| 日韩欧美国产精品一区| 日韩免费一区二区| 久久亚洲欧美国产精品乐播| 久久久久久麻豆| 国产精品久久久久影院| 国产精品国产a级| 一区二区欧美在线观看| 亚洲一区二区三区中文字幕| 亚洲成av人影院在线观看网| 视频一区二区不卡| 国产一区二区在线视频| 国产99久久久国产精品潘金网站| www.成人网.com| 在线视频你懂得一区二区三区| 91国产福利在线| 日韩欧美国产综合一区| 国产拍揄自揄精品视频麻豆| 亚洲女女做受ⅹxx高潮| 视频一区免费在线观看| 国产麻豆精品视频| 一道本成人在线| 日韩一级二级三级精品视频| 国产色产综合色产在线视频| 亚洲欧洲性图库| 欧美a一区二区| 成人在线一区二区三区| 欧美视频一区二区在线观看| 日韩欧美成人一区| 国产精品萝li| 日本午夜一区二区| jlzzjlzz欧美大全| 欧美巨大另类极品videosbest| www国产精品av| 亚洲综合激情网| 国产一区二区中文字幕| 欧美性一二三区| 国产三级一区二区| 五月开心婷婷久久| 成人一区二区三区| 日韩网站在线看片你懂的| 成人欧美一区二区三区小说| 日本美女视频一区二区| gogo大胆日本视频一区| 欧美一区二区三区视频免费| 中文字幕欧美国产| 日本伊人午夜精品| 一本色道综合亚洲| 久久久无码精品亚洲日韩按摩| 亚洲午夜精品久久久久久久久| 国产麻豆精品在线| 日韩欧美中文一区| 一区二区三区**美女毛片| 成人网男人的天堂| 精品福利二区三区| 日日骚欧美日韩| 欧洲另类一二三四区| 国产精品伦理在线| 国产一区二区三区电影在线观看| 欧美色网站导航| 一级日本不卡的影视| 不卡av在线网| 国产欧美一区在线| 久久99国产精品久久99果冻传媒| 欧美亚洲国产怡红院影院| 国产精品欧美久久久久无广告| 国产综合成人久久大片91| 7799精品视频| 日韩—二三区免费观看av| 欧美性生活影院| 尤物在线观看一区| 91啪亚洲精品| 亚洲天堂av一区| 99热这里都是精品| 中文字幕精品三区| 国产精品一区二区你懂的| 欧美精品一区二区三| 青青草视频一区| 9191成人精品久久| 日日夜夜一区二区| 7777精品伊人久久久大香线蕉经典版下载 | 国产伦理精品不卡| 精品国产污污免费网站入口 | 色综合久久久久久久久| 综合激情网...|