removed some instances of unnecessary <value></value> elements
This commit is contained in:
parent
a24eccb390
commit
9eacd10615
File diff suppressed because it is too large
Load Diff
|
|
@ -1559,18 +1559,8 @@ public class ExampleBean {
|
|||
<lineannotation><!-- results in a setSomeMap(<interfacename>java.util.Map</interfacename>) call --></lineannotation>
|
||||
<property name="someMap">
|
||||
<map>
|
||||
<entry>
|
||||
<key>
|
||||
<value>an entry</value>
|
||||
</key>
|
||||
<value>just some string</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>
|
||||
<value>a ref</value>
|
||||
</key>
|
||||
<ref bean="myDataSource" />
|
||||
</entry>
|
||||
<entry key="an entry" value="just some string"/>
|
||||
<entry key ="a ref" value-ref="myDataSource"/>
|
||||
</map>
|
||||
</property>
|
||||
<lineannotation><!-- results in a setSomeSet(java.util.Set) call --></lineannotation>
|
||||
|
|
@ -4231,8 +4221,7 @@ org.springframework.scripting.groovy.GroovyMessenger@272961</programlisting>
|
|||
DataSource:</para>
|
||||
|
||||
<programlisting language="xml"><bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
||||
<property name="locations">
|
||||
<value>classpath:com/foo/jdbc.properties</value>
|
||||
<property name="locations" value="classpath:com/foo/jdbc.properties"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue