我有一个使用 spring-mvc 构建的 REST 服务:
<bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView">
<property name="contentType" value="text/plain"/>
</bean>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<util:list id="beanList">
<bean id="jsonMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"/>
</util:list>
</property>
</bean>
为了避免序列化中的循环引用,我将对象注释如下:
class Parent implements Serializable {
int parent_id;
@JsonManagedReference
private List<Child> children;
}
class Child implements Serializable {
int child_id;
@JsonBackReference
private Parent parent;
}
我的 REST 服务公开了两个分别获取父级和子级的“方法”:
@RequestMapping(value = "/parent/{id}", method = RequestMethod.GET)
@ResponseBody public Parent getParent(@PathVariable int id , Model model) {
Parent parent = myManager.getParent(id);
return parent;
}
@RequestMapping(value = "/child/{id}", method = RequestMethod.GET)
@ResponseBody public Child getChild(@PathVariable int id , Model model) {
Child child = myManager.getChild(id);
return parent;
}
第一个方法 getParent 按预期工作并返回一个包含所有子级的父级,但第二个方法 getChild 返回一个子级,该子级没有任何对其父级的引用。
json for parent: {"parent_id": 1, "children": [{"child_id":1},{"child_id":2}]}
json for child: {"child_id":1}
所以我的问题是,如何设置序列化,以便 getChild 返回对其父对象的某种引用?