storing type information as specified (SPR-5556, SPR-5562); explicit XML array element in spring-beans-3.0.xsd (SPR-5543)

This commit is contained in:
Juergen Hoeller
2009-04-15 22:27:32 +00:00
parent 5a561bcd07
commit 1b5812da20
17 changed files with 1568 additions and 202 deletions

View File

@@ -1,6 +1,7 @@
http\://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd
http\://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd
http\://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd
http\://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd
http\://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd
http\://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd
http\://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd
http\://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd

View File

@@ -78,7 +78,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'lazy-init' value; see the documentation for the
'lazy-init' attribute of the '<bean>/' element.
'lazy-init' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
</xsd:attribute>
@@ -94,7 +94,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'autowire' value; see the documentation for the
'autowire' attribute of the '<bean>/' element.
'autowire' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
@@ -111,7 +111,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'dependency-check' value; see the documentation for the
'dependency-check' attribute of the '<bean>/' element.
'dependency-check' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
@@ -127,7 +127,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'init-method' value; see the documentation for the
'init-method' attribute of the '<bean>/' element.
'init-method' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
</xsd:attribute>
@@ -135,7 +135,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'destroy-method' value; see the documentation for the
'destroy-method' attribute of the '<bean>/' element.
'destroy-method' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
</xsd:attribute>
@@ -323,7 +323,7 @@
more explicit.
2. "byName"
Autowiring by property name. If a bean of class Cat exposes a dog
Autowiring by property name. If a bean of class Cat exposes a "dog"
property, Spring will try to set this to the value of the bean "dog"
in the current container. If there is no matching bean by name, nothing
special happens; use dependency-check="objects" to raise an error in

View File

@@ -78,7 +78,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'lazy-init' value; see the documentation for the
'lazy-init' attribute of the '<bean>/' element.
'lazy-init' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
</xsd:attribute>
@@ -94,7 +94,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'autowire' value; see the documentation for the
'autowire' attribute of the '<bean>/' element.
'autowire' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
@@ -111,7 +111,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'dependency-check' value; see the documentation for the
'dependency-check' attribute of the '<bean>/' element.
'dependency-check' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
@@ -138,7 +138,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'init-method' value; see the documentation for the
'init-method' attribute of the '<bean>/' element.
'init-method' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
</xsd:attribute>
@@ -146,7 +146,7 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The default 'destroy-method' value; see the documentation for the
'destroy-method' attribute of the '<bean>/' element.
'destroy-method' attribute of the '<bean>' element.
]]></xsd:documentation>
</xsd:annotation>
</xsd:attribute>
@@ -336,7 +336,7 @@
more explicit.
2. "byName"
Autowiring by property name. If a bean of class Cat exposes a dog
Autowiring by property name. If a bean of class Cat exposes a "dog"
property, Spring will try to set this to the value of the bean "dog"
in the current container. If there is no matching bean by name, nothing
special happens; use dependency-check="objects" to raise an error in