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

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

?? spring-beans-2.0.xsd

?? spring framework 2.5.4源代碼
?? XSD
?? 第 1 頁 / 共 3 頁
字號:
					<xsd:enumeration value="byName"/>
					<xsd:enumeration value="byType"/>
					<xsd:enumeration value="constructor"/>
					<xsd:enumeration value="autodetect"/>
				</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
	bean's dependencies, expressed in its properties, are satisfied.
	The default is to perform no dependency checking.

	"simple" type dependency checking includes primitives and String;
	"objects" 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="simple"/>
					<xsd:enumeration value="objects"/>
					<xsd:enumeration value="all"/>
				</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="autowire-candidate" type="xsd:boolean">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	Indicates whether or not this bean should be considered when looking
	for matching candidates to satisfy another bean's autowiring requirements.
	Note that this does not affect explicit references by name, which will get
	resolved even if the specified bean is not marked as an autowire candidate.
				]]></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: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">

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色www精品视频在线观看| www.综合网.com| 亚洲人成精品久久久久久| 日韩一区二区在线看| 色八戒一区二区三区| 国产精品888| 免费人成网站在线观看欧美高清| 亚洲私人黄色宅男| 久久久久国产成人精品亚洲午夜| 欧美日韩国产精品成人| 99在线热播精品免费| 久久国产精品99久久久久久老狼| 一个色综合av| 亚洲欧洲av在线| 久久综合国产精品| 日韩一区二区三区视频在线| 欧美视频在线一区| 成人午夜看片网址| 国产福利精品导航| 韩国成人福利片在线播放| 日韩和欧美一区二区三区| 洋洋av久久久久久久一区| 国产精品电影一区二区| 欧美精品一区二区三区视频| 91精品国产一区二区三区蜜臀| 欧美日韩一区精品| 91久久精品一区二区三| av在线一区二区| 成人精品gif动图一区| 国产99久久久精品| 丰满放荡岳乱妇91ww| 在线观看视频欧美| 成人av动漫在线| 成人动漫精品一区二区| 成人午夜视频网站| 国产不卡在线视频| 成人免费不卡视频| 国产 欧美在线| 不卡视频在线看| 成人av网站在线| 成人av免费在线播放| 99久久久国产精品免费蜜臀| 91在线高清观看| 92精品国产成人观看免费| 91美女片黄在线| 欧美在线播放高清精品| 欧美三级日韩三级| 欧美伦理电影网| 日韩三级视频在线观看| 欧美大片一区二区三区| 日韩美女一区二区三区四区| 2024国产精品视频| 国产精品网站导航| 一区二区三区在线观看欧美| 亚洲丰满少妇videoshd| 喷水一区二区三区| 韩国av一区二区三区四区| 成人一级片网址| 在线日韩国产精品| 欧美一区二区三区思思人| 精品久久人人做人人爽| 国产精品久久久久影院亚瑟 | 欧美精品xxxxbbbb| 欧美一级欧美三级在线观看| 精品美女在线播放| 国产精品国产精品国产专区不蜜| 亚洲综合激情另类小说区| 婷婷国产v国产偷v亚洲高清| 麻豆精品视频在线| 国产91在线|亚洲| 欧美性感一类影片在线播放| 日韩欧美激情四射| 国产精品不卡视频| 首页国产欧美久久| 成人污污视频在线观看| 欧美午夜精品一区| 久久奇米777| 亚洲男人的天堂网| 久久99精品一区二区三区| www.亚洲人| 日韩欧美国产综合| 亚洲美女偷拍久久| 狠狠色丁香九九婷婷综合五月| 91亚洲精华国产精华精华液| 日韩一区二区免费在线观看| 日韩美女精品在线| 激情文学综合网| 欧美在线观看视频一区二区| 国产色一区二区| 亚洲成人一二三| 成人三级在线视频| 欧美一区二区在线免费播放| 国产精品久久免费看| 日本三级韩国三级欧美三级| 97久久人人超碰| 久久精品在这里| 视频一区二区欧美| 99精品视频一区二区三区| 欧美成人a∨高清免费观看| 亚洲美女一区二区三区| 国产成人一区二区精品非洲| 欧美男男青年gay1069videost| 亚洲国产成人私人影院tom| 日本成人在线一区| 在线影视一区二区三区| 国产欧美日韩中文久久| 日本三级亚洲精品| 欧美日韩在线直播| 亚洲婷婷综合久久一本伊一区| 国产一区二区在线观看视频| 91精品免费在线观看| 一区二区日韩电影| 99久久久久免费精品国产| 亚洲精品一区在线观看| 蜜乳av一区二区| 欧美欧美欧美欧美| 亚洲一二三区视频在线观看| 97久久超碰国产精品电影| 中文字幕欧美激情一区| 国产伦理精品不卡| 久久日一线二线三线suv| 日韩综合在线视频| 欧美日韩一区成人| 亚洲一区在线观看免费| 色妹子一区二区| 国产精品久久久久影院色老大| 国产成人免费av在线| 久久精品日产第一区二区三区高清版 | 自拍偷拍亚洲激情| 成人激情免费视频| 中文字幕av一区二区三区| 国产一区二三区| 国产午夜亚洲精品不卡| 国产呦萝稀缺另类资源| 欧美一区二区视频在线观看2022 | av电影一区二区| 国产精品久久久一本精品| 成人av动漫在线| 亚洲色图欧洲色图婷婷| 色一区在线观看| 亚洲成人三级小说| 欧美日韩久久久久久| 日韩精品福利网| 日韩欧美国产一区二区三区| 精品一区二区三区在线播放| 久久久久久久久99精品| 国产91精品欧美| 中文字幕人成不卡一区| 色妞www精品视频| 性久久久久久久| 日韩欧美中文字幕制服| 久久69国产一区二区蜜臀| 久久久夜色精品亚洲| eeuss鲁一区二区三区| 一区二区三区91| 欧美一区二区三区在线| 韩国成人福利片在线播放| 中文字幕免费不卡在线| 91国偷自产一区二区三区成为亚洲经典| 亚洲影院理伦片| 日韩欧美不卡一区| 国产成人激情av| 一区二区三区在线视频免费| 日韩视频在线你懂得| 国产高清久久久| 一级精品视频在线观看宜春院| 欧美一区二区免费观在线| 国产成人av一区二区三区在线 | 国产v综合v亚洲欧| 亚洲精品写真福利| 欧美一级免费大片| 成人美女视频在线观看18| 亚洲制服丝袜在线| 精品国产一区二区三区久久久蜜月 | 国产老女人精品毛片久久| 国产精品萝li| 日韩一区二区三区电影| 国产不卡一区视频| 亚洲一区二区三区在线看| 久久午夜电影网| 在线欧美日韩国产| 国产美女在线观看一区| 亚洲一区自拍偷拍| 国产日韩欧美制服另类| 欧美午夜片在线观看| 国产凹凸在线观看一区二区 | av高清不卡在线| 免费在线观看一区二区三区| 国产精品久久福利| 日韩一区二区在线看| 一本大道久久a久久综合| 国产主播一区二区| 亚洲成a人片在线观看中文| 久久一区二区三区四区| 欧美精品自拍偷拍| 色综合天天综合| 国产麻豆日韩欧美久久| 日本不卡123| 一区二区三区欧美激情| 中文字幕免费观看一区|