1

假设,如果我有这样的JSON数据,

var json = {"name":"kite Player","age":"25","hobby":"footbal"}

我可以发送JSON数据

var jsonData = JSON.Stringfy(json);

JQueryAjax,

data = jsonData ,

我可以通过以下方式解析spring控制器中的JSON数据,

public class TestController {
    @RequestMapping(method = RequestMethod.POST, value = "personDetails.html")
    public @ResponseBody Result math(@RequestBody final Persons persons) {

         String name = person.getName();
         String age = persons.getAge();
         String hobby = persons.getHobby();
         // Other process
    }
}

如果我需要发送多个人的详细信息,我JSON该如何解析,Spring controllerJSON

var json = [ {"name":"kite Player","age":"25","hobby":"footbal"},  
             {"name":"Steve","age":"40","hobby":"fishing"},
             {"name":"Marker","age":"28","hobby":"cricket"}
           ]

希望我们的堆栈成员能给出一个好的解决方案。

4

3 回答 3

3

这应该有效:

@RequestMapping(method = RequestMethod.POST, value = "personDetails.html")
public @ResponseBody Result math(@RequestBody List<Persons> personList) { ... }

--编辑和添加示例--

我已经在本地对此进行了测试,它对我有用。这是代码片段:

public class TestController {
    public static class Test {                                                    
        String name;                                                                 

        public String getName() {                                                    
            return name;                                                                
        }                                                                            

        public void setName(String name) {                                           
            this.name = name;                                                           
        }                                                                            
    }                                                                             


    @RequestMapping(value = "/debug/test1.json", method = RequestMethod.POST)     
    @ResponseBody                                                                 
    public Test[] testList1(@RequestBody Test[] test) {                           
        return test;                                                                 
    }                                                                             

    @RequestMapping(value = "/debug/test2.json", method = RequestMethod.POST)     
    @ResponseBody                                                                 
    public List<Test> testList2(@RequestBody List<Test> test) {                   
        return test;                                                                 
    }                                                                     
}        

以下是测试结果(我用 curl 测试过):

    Request:
    curl --header "Content-type: application/json" --header "Accept: application/json"  --data '[{"name": "John"}, {"name": "Jack"}]' http://localhost:8080/app/debug/test1.json
    Response:
    [{"name":"John"},{"name":"Jack"}]

    Request:
    curl --header "Content-type: application/json" --header "Accept: application/json"  --data '[{"name": "John"}, {"name": "Jack"}]' http://localhost:8080/app/debug/test2.json
    Response:
    [{"name":"John"},{"name":"Jack"}]

PS。当 JSON 请求在到达控制器之前失败时,很难在 Spring MVC 中获取任何调试信息。要获取调试信息,在某些情况下,您需要设置 Spring MVC 的调试级别以进行跟踪。当我需要验证 JSON 请求失败的原因时,我通常会将其添加到我的 log4j.properties 中:

log4j.logger.org.springframework.web.servlet.mvc.method.annotation=TRACE
于 2013-07-12T15:45:00.143 回答
0

您可以在 Json 数组中的 JsonObject 中发送每个成员的详细信息,然后您可以遍历数组并获取各个 JSON 对象。您可以查看 JSON 的文档,了解获取和设置数据的所有可用方法。

另外,我建议您使用 GSON (google -json),它们对内存友好。:)

于 2013-07-12T11:32:50.160 回答
0

试试这个代码

@RequestMapping(method = RequestMethod.POST, value = "personDetails.html")
public @ResponseBody Result math(@RequestBody List< Persons > persons) {
    for (Persons person : persons) {
        String name = person.getName();
        String age = person.getAge();
        String hobby = person.getHobby();
        // Process the data
    }
}
于 2013-11-26T13:18:49.947 回答