2

我确实在json下面发布了包含

{"testListObject":[{"testText":"bbb","testDate":"02.01.2011 00:00:00.000"},{"testText":"aaa","testDate":"01.01.2011 00:00:00.000"}]}

在我的弹簧控制器中,我有

@RequestMapping(value = "/post/tester/", method = RequestMethod.POST)
 public @ResponseBody String postItinerary(@ModelAttribute("testListObject") TestList testList) throws IOException {


    System.out.println("1="+testList); //ok
    System.out.println("2="+testList.childListObject); //print null
}

知道为什么我的 List childListObject 为 null 吗?

我的 pojo 如下所示

    public class TestList (){

    public List<ChildObject> childListObject;

//get and set
    }


    public class ChildObject(){

    public String testText;
    public String testDate;
//get and set    
}
4

2 回答 2

5

@ModelAttribute调用 Web 数据绑定器。它正在寻找普通的 post 方法参数(例如,参数键 - “childListObject[0].testText”参数值“bbb”)以绑定到您的对象。
要将 JSON 反序列化为对象,您希望使用它@RequestBody来调用序列化程序。

此外,您的 JSON 似乎与对象不匹配。您的 JSON 只是一个没有包装器对象的数组,因此如果您将其作为请求提交,则方法参数将只是一个列表。

于 2011-01-21T16:18:19.947 回答
0

您是否在设置 xml 中配置了org.springframework.http.converter.json.MappingJacksonHttpMessageConverter ?

于 2011-01-21T16:15:07.943 回答