@@ -18,22 +18,27 @@ public class DefaultFormBindingReader implements FormBindingReader {
18
18
19
19
@ Override
20
20
public <ReturnType > ReturnType read (String input , Class <ReturnType > returnTypeClazz ) {
21
- try {
22
- Set <Field > boundFields = extractBoundFields (returnTypeClazz );
23
- ReturnType returnValue = returnTypeClazz .newInstance ();
24
- Map <String , String > valueMap = splitQuery (input );
25
- for (String key : valueMap .keySet ()) {
26
- Field field = findMatchingField (key , boundFields );
27
- if (field != null ) {
28
- field .setAccessible (true );
29
- Class <?> type = field .getType ();
30
- Object object = CommonCode .cub .convert (valueMap .get (key ), type );
31
- field .set (returnValue , object );
21
+ if (returnTypeClazz != null && input != null ) {
22
+ input = input .trim ();
23
+ try {
24
+ Set <Field > boundFields = extractBoundFields (returnTypeClazz );
25
+ ReturnType returnValue = returnTypeClazz .newInstance ();
26
+ Map <String , String > valueMap = splitQuery (input );
27
+ for (String key : valueMap .keySet ()) {
28
+ Field field = findMatchingField (key , boundFields );
29
+ if (field != null ) {
30
+ field .setAccessible (true );
31
+ Class <?> type = field .getType ();
32
+ Object object = CommonCode .cub .convert (valueMap .get (key ), type );
33
+ field .set (returnValue , object );
34
+ }
32
35
}
36
+ return returnValue ;
37
+ } catch (InstantiationException | IllegalAccessException e ) {
38
+ throw new RuntimeException (e );
33
39
}
34
- return returnValue ;
35
- } catch (InstantiationException | IllegalAccessException e ) {
36
- throw new RuntimeException (e );
40
+ } else {
41
+ return null ;
37
42
}
38
43
}
39
44
0 commit comments