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

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

?? spring-beans-2.0.xsd

?? 網上拍賣系統
?? XSD
?? 第 1 頁 / 共 3 頁
字號:
					<xsd:enumeration value="byName"/>
					<xsd:enumeration value="default"/>
					<xsd:enumeration value="no"/>
					<xsd:enumeration value="autodetect"/>
					<xsd:enumeration value="constructor"/>
				</xsd:restriction>
			</xsd:simpleType>
		</xsd:attribute>
		<xsd:attribute name="dependency-check" default="default">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	Controls whether or not to check whether all of this
	beans dependencies, expressed in its properties, are satisfied.
	The default is to perform no dependency checking.

	"simple" type dependency checking includes primitives and String
	"object" includes collaborators (other beans in the factory)
	"all" includes both types of dependency checking

	Note: This attribute will not be inherited by child bean definitions.
	Hence, it needs to be specified per concrete bean definition.
				]]></xsd:documentation>
			</xsd:annotation>
			<xsd:simpleType>
				<xsd:restriction base="xsd:NMTOKEN">
					<xsd:enumeration value="default"/>
					<xsd:enumeration value="none"/>
					<xsd:enumeration value="all"/>
					<xsd:enumeration value="objects"/>
					<xsd:enumeration value="simple"/>
				</xsd:restriction>
			</xsd:simpleType>
		</xsd:attribute>
		<xsd:attribute name="depends-on" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The names of the beans that this bean depends on being initialized.
	The bean factory will guarantee that these beans get initialized
	before this bean.

	Note that dependencies are normally expressed through bean properties
	or constructor arguments. This property should just be necessary for
	other kinds of dependencies like statics (*ugh*) or database preparation
	on startup.

	Note: This attribute will not be inherited by child bean definitions.
	Hence, it needs to be specified per concrete bean definition.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="init-method" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The name of the custom initialization method to invoke after setting
	bean properties. The method must have no arguments, but may throw any
	exception.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="destroy-method" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The name of the custom destroy method to invoke on bean factory
	shutdown. The method must have no arguments, but may throw any
	exception.

	Note: Only invoked on beans whose lifecycle is under the full
	control of the factory - which is always the case for singletons,
	but not guaranteed for any other scope.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="factory-method" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The name of a factory method to use to create this object. Use
	constructor-arg elements to specify arguments to the factory method,
	if it takes arguments. Autowiring does not apply to factory methods.

	If the "class" attribute is present, the factory method will be a static
	method on the class specified by the "class" attribute on this bean
	definition. Often this will be the same class as that of the constructed
	object - for example, when the factory method is used as an alternative
	to a constructor. However, it may be on a different class. In that case,
	the created object will *not* be of the class specified in the "class"
	attribute. This is analogous to FactoryBean behavior.

	If the "factory-bean" attribute is present, the "class" attribute is not
	used, and the factory method will be an instance method on the object
	returned from a getBean call with the specified bean name. The factory
	bean may be defined as a singleton or a prototype.

	The factory method can have any number of arguments. Autowiring is not
	supported. Use indexed constructor-arg elements in conjunction with the
	factory-method attribute.

	Setter Injection can be used in conjunction with a factory method.
	Method Injection cannot, as the factory method returns an instance,
	which will be used when the container creates the bean.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="factory-bean" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	Alternative to class attribute for factory-method usage.
	If this is specified, no class attribute should be used.
	This must be set to the name of a bean in the current or
	ancestor factories that contains the relevant factory method.
	This allows the factory itself to be configured using Dependency
	Injection, and an instance (rather than static) method to be used.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="autowire-candidate" type="xsd:boolean">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	Indicates whether or not this bean should be considered when looking
	for candidates to satisfy another beans autowiring requirements.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:anyAttribute namespace="##other" processContents="lax"/>
	</xsd:attributeGroup>

	<xsd:element name="meta" type="metaType">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	Arbitrary metadata attached to a bean definition.
			]]></xsd:documentation>
		</xsd:annotation>
	</xsd:element>

	<xsd:complexType name="metaType">
		<xsd:attribute name="key" type="xsd:string" use="required">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The key name of the metadata parameter being defined.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="value" type="xsd:string" use="required">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The value of the metadata parameter being defined (as a simple String).
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<xsd:element name="bean">
		<xsd:annotation>
			<xsd:documentation source="java:org.springframework.beans.factory.config.BeanDefinition"><![CDATA[
	Defines a single (usually named) bean.

	A bean definition may contain nested tags for constructor arguments,
	property values, lookup methods, and replaced methods. Mixing constructor
	injection and setter injection on the same bean is explicitly supported.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:complexContent>
				<xsd:extension base="identifiedType">
					<xsd:group ref="beanElements"/>
					<xsd:attributeGroup ref="beanAttributes"/>
				</xsd:extension>
			</xsd:complexContent>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="constructor-arg">
		<xsd:annotation>
			<xsd:documentation source="java:org.springframework.beans.factory.config.ConstructorArgumentValues">
				<![CDATA[
	Bean definitions can specify zero or more constructor arguments.
	This is an alternative to "autowire constructor".
	Arguments correspond to either a specific index of the constructor
	argument list or are supposed to be matched generically by type.

	Note: A single generic argument value will just be used once, rather
	than potentially matched multiple times (as of Spring 1.1).

	constructor-arg elements are also used in conjunction with the
	factory-method element to construct beans using static or instance
	factory methods.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element ref="description" minOccurs="0"/>
				<xsd:choice minOccurs="0" maxOccurs="1">
					<xsd:element ref="bean"/>
					<xsd:element ref="ref"/>
					<xsd:element ref="idref"/>
					<xsd:element ref="value"/>
					<xsd:element ref="null"/>
					<xsd:element ref="list"/>
					<xsd:element ref="set"/>
					<xsd:element ref="map"/>
					<xsd:element ref="props"/>
					<xsd:any namespace="##other" processContents="strict"/>
				</xsd:choice>
			</xsd:sequence>
			<xsd:attribute name="index" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	The exact index of thr argument in the constructor argument list.
	Only needed to avoid ambiguities, e.g. in case of 2 arguments of
	the exact same type.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
			<xsd:attribute name="type" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	The exact type of the constructor argument. Only needed to avoid
	ambiguities, e.g. in case of 2 single argument constructors
	that can both be converted from a String.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
			<xsd:attribute name="ref" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	A short-cut alternative to a nested "<ref bean='...'/>" element.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
			<xsd:attribute name="value" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	A short-cut alternative to a nested "<value>...<value/>"
	element.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="property" type="propertyType">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	Bean definitions can have zero or more properties.
	Property elements correspond to JavaBean setter methods exposed
	by the bean classes. Spring supports primitives, references to other
	beans in the same or related factories, lists, maps and properties.
			]]></xsd:documentation>
		</xsd:annotation>
	</xsd:element>

	<xsd:element name="lookup-method">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	A lookup method causes the IoC container to override the given method
	and return the bean with the name given in the bean attribute. This is
	a form of Method Injection. It is particularly useful as an alternative
	to implementing the BeanFactoryAware interface, in order to be able to
	make getBean() calls for non-singleton instances at runtime. In this
	case, Method Injection is a less invasive alternative.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:complexContent>
				<xsd:restriction base="xsd:anyType">
					<xsd:attribute name="name" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation><![CDATA[
	The name of the lookup method. This method must take no arguments.
							]]></xsd:documentation>
						</xsd:annotation>
					</xsd:attribute>
					<xsd:attribute name="bean" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation><![CDATA[
	The name of the bean in the current or ancestor factories that
	the lookup method should resolve to. Often this bean will be a
	prototype, in which case the lookup method will return a distinct
	instance on every invocation. This is useful for single-threaded objects.
							]]></xsd:documentation>
						</xsd:annotation>
					</xsd:attribute>
				</xsd:restriction>
			</xsd:complexContent>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="replaced-method">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	Similar to the lookup method mechanism, the replaced-method element
	is used to control IoC container method overriding: Method Injection.
	This mechanism allows the overriding of a method with arbitrary code.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:sequence>
				<xsd:choice minOccurs="0" maxOccurs="unbounded">
					<xsd:element ref="arg-type"/>
				</xsd:choice>
			</xsd:sequence>
			<xsd:attribute name="name" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	The name of the method whose implementation must be replaced by the
	IoC container. If this method is not overloaded, there is no need
	to use arg-type subelements. If this method is overloaded, arg-type
	subelements must be used for all override definitions for the method.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
			<xsd:attribute name="replacer" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation source="java:org.springframework.beans.factory.support.MethodReplacer"><![CDATA[
	Bean name of an implementation of the MethodReplacer interface in the
	current or ancestor factories. This may be a singleton or prototype
	bean. If it is a prototype, a new instance will be used for each
	method replacement. Singleton usage is the norm.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="arg-type">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	Identifies an argument for a replaced method in the event of
	method overloading.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType mixed="true">
			<xsd:choice minOccurs="0" maxOccurs="unbounded"/>
			<xsd:attribute name="match" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	Specification of the type of an overloaded method argument as a String.
	For convenience, this may be a substring of the FQN. E.g. all the
	following would match "java.lang.String":
	- java.lang.String
	- String
	- Str

	As the number of arguments will be checked also, this convenience
	can often be used to save typing.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="ref">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	Defines a reference to another bean in this factory or an external
	factory (parent or included factory).
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:complexContent>
				<xsd:restriction base="xsd:anyType">

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美一区二区三区孕妇| 欧美一级在线免费| 亚洲欧美色综合| 色94色欧美sute亚洲线路一ni | 国产99久久久久久免费看农村| 91精品国产免费久久综合| 六月丁香综合在线视频| 国产蜜臀av在线一区二区三区| 成人激情小说乱人伦| 一级精品视频在线观看宜春院 | 欧美aⅴ一区二区三区视频| 日韩免费高清av| 成人免费福利片| 五月婷婷久久丁香| 久久噜噜亚洲综合| 色婷婷国产精品久久包臀| 亚洲1区2区3区4区| 日韩一区二区免费在线电影| 国产91清纯白嫩初高中在线观看| 亚洲欧洲在线观看av| 欧美在线制服丝袜| 国产一区二区三区精品欧美日韩一区二区三区 | 成人a区在线观看| 香蕉久久一区二区不卡无毒影院| 欧美成人精品1314www| 精品一区二区三区免费视频| 中文字幕一区二区在线播放| 538在线一区二区精品国产| 国产suv精品一区二区三区| 亚洲精品第一国产综合野| 欧美刺激午夜性久久久久久久| 成人美女视频在线观看18| 亚洲地区一二三色| 中文字幕不卡在线播放| 91精品国产色综合久久ai换脸| 成人性生交大片免费看视频在线| 丝袜a∨在线一区二区三区不卡 | 亚洲色图在线视频| 欧美大白屁股肥臀xxxxxx| 99久久免费精品| 精品在线一区二区三区| 亚洲一区二区三区中文字幕| 久久久亚洲国产美女国产盗摄 | 99国内精品久久| 国产在线精品一区二区| 视频一区视频二区在线观看| 一区二区中文视频| 2021中文字幕一区亚洲| 91.麻豆视频| 一本久久综合亚洲鲁鲁五月天| 激情文学综合网| 天天亚洲美女在线视频| 亚洲欧洲一区二区在线播放| 久久精品男人的天堂| 日韩一区二区免费电影| 欧美性一二三区| www.色精品| 丁香婷婷综合激情五月色| 激情五月播播久久久精品| 奇米影视一区二区三区小说| 亚洲高清在线视频| 亚洲高清免费在线| 亚洲综合在线第一页| 日韩一区中文字幕| 国产日产欧美精品一区二区三区| 精品国产青草久久久久福利| 9191精品国产综合久久久久久 | 精品午夜久久福利影院| 日韩精品一级中文字幕精品视频免费观看 | 久久精品亚洲一区二区三区浴池| 欧美一级欧美一级在线播放| 欧美三级视频在线观看| 欧洲一区在线电影| 一本色道久久综合亚洲91| av在线这里只有精品| 国产成人免费视频一区| 国产乱淫av一区二区三区| 极品美女销魂一区二区三区免费| 日韩成人午夜电影| 青娱乐精品视频在线| 麻豆精品国产91久久久久久| 久久狠狠亚洲综合| 国内精品久久久久影院薰衣草| 精品一区二区三区在线观看 | 91猫先生在线| 色偷偷88欧美精品久久久| 色偷偷88欧美精品久久久| 在线观看区一区二| 欧美乱妇15p| 日韩三级视频在线看| 精品国精品自拍自在线| 久久久高清一区二区三区| 国产精品日产欧美久久久久| 亚洲欧洲成人av每日更新| 亚洲九九爱视频| 日韩成人一区二区三区在线观看| 久久精品国产77777蜜臀| 国产剧情在线观看一区二区| 成人网页在线观看| 91极品美女在线| 欧美一区二区在线观看| 久久久无码精品亚洲日韩按摩| 中文字幕亚洲精品在线观看| 亚洲影院在线观看| 激情小说欧美图片| 91久久国产最好的精华液| 91麻豆精品国产91久久久| 精品盗摄一区二区三区| 亚洲欧美成aⅴ人在线观看 | 久久99精品久久久久久久久久久久 | 久久国产三级精品| 成人avav影音| 欧美久久一二三四区| 久久久久久久电影| 亚洲国产精品自拍| 国产成人综合亚洲网站| 精品视频在线看| 欧美激情在线免费观看| 午夜视频一区在线观看| 大美女一区二区三区| 欧美精品 日韩| 国产精品美女久久福利网站| 三级在线观看一区二区| 99视频一区二区三区| 欧美一区二区久久久| 亚洲欧洲精品一区二区三区| 蜜臀av一级做a爰片久久| 91一区在线观看| 精品美女一区二区三区| 亚洲综合色在线| www.激情成人| 欧美精品一区二区三区久久久| 亚洲午夜私人影院| av亚洲精华国产精华精华| 精品99999| 日韩av成人高清| 欧美中文字幕久久| 国产精品不卡视频| 国产精品夜夜爽| 91精品国产丝袜白色高跟鞋| 亚洲卡通欧美制服中文| hitomi一区二区三区精品| 久久久精品免费网站| 久久精品国产99| 日韩一级片网站| 丝袜诱惑制服诱惑色一区在线观看| 成人h精品动漫一区二区三区| 久久一二三国产| 久久精品国产亚洲一区二区三区| 欧美日韩色综合| 亚洲精品亚洲人成人网在线播放| 成人看片黄a免费看在线| 久久久91精品国产一区二区三区| 日本在线观看不卡视频| 欧美精品久久99| 午夜激情一区二区| 欧美精品在线一区二区三区| 一区二区三区**美女毛片| 一本色道a无线码一区v| 亚洲乱码国产乱码精品精可以看| 91亚洲午夜精品久久久久久| 国产精品久线观看视频| av影院午夜一区| 17c精品麻豆一区二区免费| 99免费精品在线观看| 中文字幕一区二区视频| jvid福利写真一区二区三区| 亚洲国产高清在线| av在线免费不卡| 亚洲色大成网站www久久九九| 成人免费观看av| 亚洲欧洲综合另类| 在线观看日韩国产| 午夜精品视频在线观看| 制服丝袜在线91| 精品一区二区久久久| 国产女人水真多18毛片18精品视频 | 亚洲国产激情av| 99re这里都是精品| 亚洲欧美另类图片小说| 欧美日韩专区在线| 麻豆中文一区二区| 久久你懂得1024| 91色porny| 午夜电影网一区| 精品久久一区二区| 成人一区二区三区视频在线观看| 中文字幕中文字幕在线一区| 91精品福利在线| 麻豆精品蜜桃视频网站| 国产精品网曝门| 欧美三级蜜桃2在线观看| 蜜乳av一区二区| 国产精品久久久久久久浪潮网站 | 成人一区二区三区| 一区二区三区精密机械公司| 日韩午夜精品电影| 成人免费高清在线观看| 午夜精品一区二区三区电影天堂 | 国产亚洲精品7777|