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

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

?? spring-aop-2.0.xsd

?? struts+spring 源碼 希望能給大家?guī)?lái)幫助
?? 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>

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色999日韩国产欧美一区二区| 在线亚洲人成电影网站色www| 国产在线视视频有精品| 日韩国产精品久久久| 免费观看91视频大全| 久久爱另类一区二区小说| 免费观看日韩电影| 成人福利视频在线看| eeuss国产一区二区三区| 一本久久精品一区二区| 欧美视频中文字幕| www久久精品| 亚洲欧美精品午睡沙发| 丝袜美腿亚洲综合| 国产一区二区主播在线| 成人黄色免费短视频| 欧美日韩一区三区| 国产日韩v精品一区二区| 一二三四区精品视频| 老司机免费视频一区二区三区| 国产精品丝袜一区| 精品国产露脸精彩对白| 欧美日韩国产高清一区二区三区| 日韩一区国产二区欧美三区| 久久久久久久久久久电影| 国产精品美女一区二区三区| 婷婷亚洲久悠悠色悠在线播放| 国产精品一区二区黑丝| 欧美日韩国产成人在线91| 国产欧美日韩三区| 免费人成黄页网站在线一区二区| 成人小视频在线| 精品国产凹凸成av人导航| 一区二区三区在线视频免费观看| 国产毛片精品国产一区二区三区| 欧美日韩亚洲国产综合| 亚洲欧洲日产国码二区| 国产成人精品免费| 日韩精品专区在线影院重磅| 亚洲电影在线播放| 欧美中文字幕一区二区三区| 国产乱对白刺激视频不卡| 精品噜噜噜噜久久久久久久久试看| 久久久精品免费免费| 亚洲va中文字幕| 在线观看免费视频综合| 亚洲免费在线观看视频| 成人在线视频一区| 国产色产综合产在线视频 | 欧美一二区视频| 视频精品一区二区| 中文字幕一区免费在线观看| 欧美人牲a欧美精品| 成人综合婷婷国产精品久久免费| 亚洲欧美另类久久久精品| 欧美刺激午夜性久久久久久久 | 奇米色一区二区| 亚洲国产一区二区a毛片| 精品国产一区二区三区av性色| 色综合视频在线观看| 久久国产精品区| 日韩中文字幕麻豆| 亚洲日本欧美天堂| 国产丝袜欧美中文另类| 2024国产精品| 日韩一卡二卡三卡四卡| 欧美日韩中文精品| 91九色02白丝porn| 在线观看日韩国产| 色一区在线观看| 成人av在线网站| 成人午夜短视频| 成人激情免费网站| 懂色av中文字幕一区二区三区 | 欧美一卡二卡在线| 欧美一二三区在线观看| 欧美成va人片在线观看| 欧美xxxx老人做受| 久久久国产午夜精品| 久久久www成人免费无遮挡大片| 精品国产99国产精品| 精品国产乱码久久久久久蜜臀| 欧美一区二区三区免费大片| 欧美一区二区三区在线观看 | 亚洲亚洲人成综合网络| www.亚洲色图.com| 日韩激情av在线| 日韩**一区毛片| 麻豆成人在线观看| 国产精品主播直播| 色综合天天天天做夜夜夜夜做| 色综合网站在线| 欧美剧情片在线观看| 欧美一区在线视频| 国产嫩草影院久久久久| 亚洲精品欧美专区| 日本强好片久久久久久aaa| 91丨九色porny丨蝌蚪| 91亚洲国产成人精品一区二区三 | 欧美精品精品一区| 精品国产伦理网| 一区二区三区在线视频免费观看| 日日夜夜免费精品视频| 麻豆国产一区二区| 色婷婷激情一区二区三区| 日韩欧美黄色影院| 亚洲精品国产无天堂网2021 | 一区二区三区中文在线| 久久99久久99小草精品免视看| 成人综合婷婷国产精品久久蜜臀| 欧美三区在线视频| 国产精品色哟哟网站| 免费精品视频在线| 色婷婷亚洲精品| 国产精品电影一区二区三区| 舔着乳尖日韩一区| 91天堂素人约啪| 精品国产免费一区二区三区香蕉| 有坂深雪av一区二区精品| 高清久久久久久| 1024成人网色www| 国产99久久久国产精品| 51午夜精品国产| 亚洲丰满少妇videoshd| av在线免费不卡| 国产精品色在线观看| 国产高清无密码一区二区三区| 欧美一区二区成人6969| 又紧又大又爽精品一区二区| 91原创在线视频| 蜜臀精品久久久久久蜜臀| 欧美中文一区二区三区| 亚洲精品日韩专区silk| 在线中文字幕不卡| 一区二区成人在线视频| 欧美在线不卡一区| 亚洲综合一二区| 欧美日韩在线综合| 无码av免费一区二区三区试看 | 国产91色综合久久免费分享| 精品国产乱码久久久久久免费 | 欧美国产精品久久| 高清在线观看日韩| 国产亚洲欧美在线| 国产精品一区二区三区99| xf在线a精品一区二区视频网站| 亚洲男人电影天堂| 欧美亚洲国产怡红院影院| 一区二区三区中文字幕| 欧美中文字幕一区| 亚洲午夜免费福利视频| 国产成+人+日韩+欧美+亚洲| 精品视频在线免费| 一区二区免费看| 在线不卡a资源高清| 国产乱人伦精品一区二区在线观看 | 日韩精品三区四区| 在线成人av影院| 精品在线一区二区| 国产亚洲污的网站| 成人黄动漫网站免费app| 一个色在线综合| 欧美剧情片在线观看| 极品少妇xxxx精品少妇偷拍| 国产精品久久网站| 欧美精品久久久久久久久老牛影院| 日本网站在线观看一区二区三区 | 欧美优质美女网站| 午夜精品一区在线观看| 欧美成人猛片aaaaaaa| 成人高清视频免费观看| 亚洲精品中文字幕乱码三区| 欧美一卡2卡3卡4卡| 成人av先锋影音| 亚洲超碰97人人做人人爱| 日韩一二在线观看| 欧美色图片你懂的| 成人精品一区二区三区中文字幕| 亚洲欧洲日韩综合一区二区| 99久久婷婷国产综合精品 | 亚洲综合一二区| 中文字幕国产一区| 26uuu久久综合| 日韩亚洲欧美高清| 91论坛在线播放| eeuss鲁片一区二区三区在线看| 免费在线成人网| 日韩高清电影一区| 中文字幕一区三区| 国产精品久久久久精k8 | 6080午夜不卡| 色哟哟一区二区| 色婷婷综合激情| 99久免费精品视频在线观看| 国产一区在线观看视频| 亚洲一区二区三区四区五区中文 | 国产精品色婷婷久久58| 久久久亚洲精品一区二区三区| 日韩视频在线观看一区二区| 欧美大胆人体bbbb|