gpt4 book ai didi

java - 使用 Jackson 转换器将嵌套的 json 绑定(bind)到 @RequestBody 对象

转载 作者:搜寻专家 更新时间:2023-11-01 03:12:33 24 4
gpt4 key购买 nike

我有两个类(class)

public class Parent {
private String name;
private int age;
private ArrayList<Child> children = new ArrayList<Child>();
//Setters and getter to follow..
}

public Class Child {
private String name;
private int age;
}

Spring 配置包括:

<bean id="jsonMessageConverter"
class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" />

<bean
class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="jsonMessageConverter" />
</list>
</property>
</bean>

Controller 如下所示:

@RequestMapping(value = "/parents", 
method = RequestMethod.POST,
headers="Content-Type=application/json")
public @ResponseBody Parent add(@RequestBody Parent parent, Model model) {

logger.debug("Received request to add a parent");
Parent tempParent = parentService.add(parent); // This will persist the parent object to the DB.. (Helper class)
return tempContract;
}

在正常情况下,它应该将传入的json绑定(bind)到Parent,并在响应中将Parent作为Json返回。它给了我一个异常(exception):“客户端发送的请求在语法上不正确。”使用以下输入 Json:

{
"name" : "foo",
"age" : "45",
"children" : [
{
"name" : "bar",
"age" : "15""
},
{
"name" : "baz",
"age" : "10""
}
]
}

因此尝试更改 json,它可以很好地使用以下格式绑定(bind) @RequestBody 和 @ResponseBody:

{
"name" : "foo",
"age" : "45",
"children" : []
}

{
"name" : "foo",
"age" : "45",
"children" : [
{}
]
}

所以我假设对实际子类的出价或我传递 Json 对象 wrt Child 对象的方式有问题。有人可以帮我解决这个问题吗?另外,是否建议使用

 private ArrayList<HashMap<String, Child>> children = new ArrayList<HashMap<String, Child>>();

代替

private ArrayList<Child> children = new ArrayList<Child>();

谢谢。

最佳答案

问题中更新的 JSON 示例仍然无效。我建议使用 JSONLint.com 检查 JSON 示例。

以下是使用 Jackson 将更正版本的 JSON 反序列化为当前版本问题中相同的父/子类结构的示例。

import java.util.ArrayList;

import org.codehaus.jackson.map.ObjectMapper;

public class Foo
{
public static void main(String[] args) throws Exception
{
/*
{
"name": "foo",
"age": "45",
"children": [
{
"name": "bar",
"age": "15"
},
{
"name": "baz",
"age": "10"
}
]
}
*/
String jsonInput = "{\"name\":\"foo\",\"age\":\"45\",\"children\":[{\"name\":\"bar\",\"age\":\"15\"},{\"name\":\"baz\",\"age\":\"10\"}]}";

ObjectMapper mapper = new ObjectMapper();
Parent parent = mapper.readValue(jsonInput, Parent.class);
System.out.println(mapper.writeValueAsString(parent));
// output:
// {"name":"foo","age":45,"children":[{"name":"bar","age":15},{"name":"baz","age":10}]}
}
}

class Parent
{
public String name;
public int age;
public ArrayList<Child> children = new ArrayList<Child>();
}

class Child
{
public String name;
public int age;
}

关于语法错误的消息是否可能只是:一条关于语法错误的消息?具体来说,关于无效的 JSON 输入?还是真正的 JSON 实际上有效,只是问题中的示例无效?

"is it suggested to use ArrayList<HashMap<String, Child>>"

没有。 JSON 结构与 ArrayList<HashMap<String, Child>> 不匹配.所以,我不会尝试使用它。

关于java - 使用 Jackson 转换器将嵌套的 json 绑定(bind)到 @RequestBody 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6702448/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com