SPRNET-1081 - Add an ExceptionThrowingAction to Spring.Validation framework

This commit is contained in:
markpollack
2009-07-30 03:38:12 +00:00
parent 3d30e01f23
commit ae883e3c0c
3 changed files with 13 additions and 9 deletions

View File

@@ -2,9 +2,10 @@
<objects xmlns="http://www.springframework.net">
<object id="parentWithList" type="Spring.Objects.TestObject, Spring.Core.Tests">
<property name="SomeGenericStringList">
<list>
<property name="SomeList">
<list element-type="string">
<value>Rob Harrop</value>
<value>Rod Johnson</value>
</list>
@@ -12,13 +13,14 @@
</object>
<object id="childWithList" parent="parentWithList">
<property name="SomeGenericStringList">
<list merge="true">
<property name="SomeList">
<list merge="true" element-type="string">
<value>Juergen Hoeller</value>
</list>
</property>
</object>
<object id="childWithListOfRefs" parent="parentWithList">
<property name="SomeList">
<list merge="true">

View File

@@ -2,9 +2,11 @@
<objects xmlns="http://www.springframework.net">
<object id="parentWithList" type="Spring.Objects.TestObject, Spring.Core.Tests">
<property name="SomeList">
<list element-type="string">
<property name="SomeGenericStringList">
<list>
<value>Rob Harrop</value>
<value>Rod Johnson</value>
</list>
@@ -12,8 +14,8 @@
</object>
<object id="childWithList" parent="parentWithList">
<property name="SomeList">
<list merge="true" element-type="string">
<property name="SomeGenericStringList">
<list merge="true">
<value>Juergen Hoeller</value>
</list>
</property>

View File

@@ -812,7 +812,7 @@
<Content Include="Data\Spring\Objects\Factory\Xml\collections.xml" />
<Content Include="Data\Spring\Objects\Factory\Xml\constructor-arg.xml" />
<Content Include="Data\Spring\Objects\Factory\Xml\array-autowire.xml" />
<Content Include="Data\Spring\Objects\Factory\Xml\collectionMergingGen.xml" />
<Content Include="Data\Spring\Objects\Factory\Xml\collectionMergingGeneric.xml" />
<Content Include="Data\Spring\Objects\Factory\Xml\collectionMerging.xml" />
<Content Include="Data\Spring\Objects\Factory\Xml\objectNameGeneration.xml" />
<Content Include="Data\Spring\Objects\Factory\Xml\simple-constructor-arg.xml" />