0

如何为以下数据 POST 请求编写 REST 服务?模板可以有任何数据,基本上是数据数组。

{
   "name":"Jose",
   "surname":"John",
   "templates":[
      {
         "template1":"333",
         "any":"any"
      },
      {
         "anything":"anything",
         "test":"tafsasdf"
      }
   ]
}
4

1 回答 1

0

CXF知道如何将这样的字符串转换为嵌套的Map<String, Object>. 您需要jackson在类路径中包含这些库,并使用@RequestBody.

像这样的东西:

@RequestBody
public void someMethod(Map<String, Object> json objects) { 
    // Code here
}
于 2013-07-11T11:33:01.023 回答