mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
catch ConversionException and ConvertedNotFoundException in BeanWrapper's convertIfNecessary as well, in order to support constructor resolution (SPR-6563)
This commit is contained in:
+10
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user