catch ConversionException and ConvertedNotFoundException in BeanWrapper's convertIfNecessary as well, in order to support constructor resolution (SPR-6563)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2672 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller
2009-12-15 12:53:36 +00:00
parent 246bb34e08
commit 5add86419d
4 changed files with 58 additions and 14 deletions
@@ -32,6 +32,8 @@ public class TestClient {
private boolean bool;
private List<String> stringList;
private Resource[] resourceArray;
private List<Resource> resourceList;
@@ -56,6 +58,14 @@ public class TestClient {
this.bool = bool;
}
public List<String> getStringList() {
return stringList;
}
public void setStringList(List<String> stringList) {
this.stringList = stringList;
}
public Resource[] getResourceArray() {
return resourceArray;
}