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

This commit is contained in:
Juergen Hoeller
2009-12-15 12:53:36 +00:00
parent 2153b2fbd5
commit 1c33206042
4 changed files with 58 additions and 14 deletions

View File

@@ -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;
}