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

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

?? spring-aop-2.5.xsd

?? spring framework 2.5.4源代碼
?? 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: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>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲美女免费视频| 精品久久久久一区二区国产| 最新日韩av在线| 成人国产免费视频| 亚洲色图清纯唯美| 欧美久久婷婷综合色| 日本不卡免费在线视频| 日韩欧美区一区二| 风间由美中文字幕在线看视频国产欧美| 国产精品天干天干在线综合| av午夜精品一区二区三区| 一区二区三区电影在线播| 欧美精品欧美精品系列| 国产精品一线二线三线| 亚洲日本在线a| 欧美一区二区福利视频| 国产黄色成人av| 亚洲线精品一区二区三区| 精品少妇一区二区三区免费观看| 成人在线视频一区| 五月综合激情日本mⅴ| 337p日本欧洲亚洲大胆精品| 99久久精品免费观看| 日本亚洲一区二区| 最新国产精品久久精品| 欧美一区二区三区四区在线观看| 国产丶欧美丶日本不卡视频| 亚洲一区二区三区四区五区中文| 日韩欧美aaaaaa| 色综合网站在线| 国产在线麻豆精品观看| 亚洲国产综合人成综合网站| 久久久亚洲精品石原莉奈| 91豆麻精品91久久久久久| 老司机精品视频线观看86| 自拍偷拍欧美激情| 精品国产凹凸成av人导航| 色婷婷综合激情| 国产一区二区不卡| 午夜伦欧美伦电影理论片| 中日韩av电影| 欧美成人a∨高清免费观看| 色综合久久88色综合天天6| 国产精品资源在线| 五月激情综合色| 亚洲人成电影网站色mp4| 欧美xxxxxxxxx| 欧美性生活大片视频| 不卡视频在线看| 国产一区二区在线观看免费| 午夜久久久久久| 亚洲综合一区二区三区| 欧美激情一区二区在线| 精品福利在线导航| 日韩一区二区免费在线电影| 欧洲一区二区av| 色国产综合视频| 97se亚洲国产综合自在线| 国产成人亚洲综合a∨猫咪| 美女国产一区二区| 日韩**一区毛片| 亚洲精品成人精品456| 最好看的中文字幕久久| 中文字幕中文字幕一区二区| 久久久国产午夜精品| 亚洲精品在线观看视频| 日韩一区二区视频| 91麻豆精品国产91久久久久久久久 | 91在线高清观看| 丁香网亚洲国际| 国产一区二区不卡在线| 国产揄拍国内精品对白| 久久99久久99精品免视看婷婷| 天天做天天摸天天爽国产一区| 亚洲与欧洲av电影| 一区二区三区在线播| 一区二区三区丝袜| 亚洲精品成a人| 亚洲午夜一区二区三区| 亚洲一区在线观看视频| 亚洲国产精品精华液网站| 午夜天堂影视香蕉久久| 蜜臀91精品一区二区三区| 开心九九激情九九欧美日韩精美视频电影 | 国产成人午夜精品影院观看视频| 裸体一区二区三区| 美女视频一区在线观看| 九九精品视频在线看| 国产夫妻精品视频| 成人av电影在线| 在线这里只有精品| 7777精品伊人久久久大香线蕉的| 91精品国产一区二区三区 | 337p日本欧洲亚洲大胆精品 | 国产欧美一区二区精品性色| 国产欧美视频一区二区| 国产精品麻豆视频| 亚洲综合激情另类小说区| 亚洲福利一区二区三区| 久久精品久久精品| 成人在线综合网站| 欧美在线高清视频| 欧美tickling挠脚心丨vk| 国产欧美日韩不卡免费| 亚洲久本草在线中文字幕| 日本美女一区二区三区视频| 美女一区二区在线观看| 9久草视频在线视频精品| 欧美男人的天堂一二区| 欧美v国产在线一区二区三区| 国产精品污污网站在线观看| 亚洲国产精品麻豆| 极品少妇xxxx精品少妇偷拍| 成人av网站大全| 51精品视频一区二区三区| 久久久久久久久蜜桃| 亚洲主播在线播放| 精彩视频一区二区三区| 色吊一区二区三区| 久久你懂得1024| 亚洲午夜久久久| 国产老妇另类xxxxx| 欧美综合色免费| 久久综合给合久久狠狠狠97色69| 亚洲精品菠萝久久久久久久| 精品亚洲国内自在自线福利| 94色蜜桃网一区二区三区| 欧美一级久久久| 一区二区三区中文在线观看| 久久国产麻豆精品| 欧美性一级生活| 国产精品美女久久久久av爽李琼| 日韩电影在线观看电影| 91性感美女视频| 国产欧美综合在线观看第十页| 性感美女极品91精品| www.欧美精品一二区| 2020国产成人综合网| 视频在线观看91| 日本道在线观看一区二区| 久久九九全国免费| 久久精品国产久精国产| 欧美精品久久99| 亚洲福利一二三区| 色婷婷久久一区二区三区麻豆| 国产欧美日韩不卡免费| 韩国成人福利片在线播放| 3d动漫精品啪啪一区二区竹菊 | 成人精品视频一区二区三区| 日韩一级二级三级精品视频| 亚洲一区二区视频在线观看| 99热精品国产| 中文字幕一区二区三区在线观看| 久久精品999| 欧美一区二区三区婷婷月色| 亚洲最大色网站| 91黄色激情网站| 亚洲免费观看高清| 成人午夜电影网站| 中文字幕电影一区| 成人精品鲁一区一区二区| 国产日韩欧美麻豆| 国产成人在线观看| 国产精品久久久久久户外露出| 成人在线视频一区二区| 国产精品毛片久久久久久久| 国产激情偷乱视频一区二区三区| 久久久精品综合| 国产成人8x视频一区二区| 国产清纯美女被跳蛋高潮一区二区久久w | 欧美老年两性高潮| 日韩vs国产vs欧美| 日韩欧美中文一区二区| 日韩国产欧美视频| 日韩精品一区在线观看| 国产乱码字幕精品高清av | 最新国产成人在线观看| 99精品视频在线观看| 亚洲欧美激情在线| 欧美色爱综合网| 日韩黄色片在线观看| 精品国产凹凸成av人网站| 国产老妇另类xxxxx| 国产精品国产三级国产aⅴ无密码| 99视频一区二区| 亚洲一区电影777| 制服丝袜av成人在线看| 久久精品国产精品青草| 中文字幕不卡在线观看| 色狠狠色狠狠综合| 免费观看一级特黄欧美大片| 精品国产91洋老外米糕| 成人美女视频在线观看| 有码一区二区三区| 日韩免费高清视频| 成人免费av网站| 视频一区二区三区在线| 国产午夜三级一区二区三| 91亚洲国产成人精品一区二区三 | 国产精品久久久久影视|