我试图在春天将对象作为XML返回,就像本指南一样:http://spring.io/guides/gs/rest-service/
除了我希望对象以xml而不是JSON的形式返回。
任何人都知道我该怎么做? Spring是否有任何依赖可以轻松地为XML做到这一点?或者,我是否需要使用marshaller然后以其他方式返回xml文件?
答案 0 :(得分:9)
Spring默认支持JSON,但为了支持XML,请执行以下步骤 -
@XmlRootElement(name = "response")
@XmlAccessorType(XmlAccessType.FIELD) => this is important, don't miss it.
public class Response {
@XmlElement
private Long status;
@XmlElement
private String error;
public Long getStatus() {
return status;
}
public void setStatus(Long status) {
this.status = status;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
}
@RequestMapping(value = "/api", method = RequestMethod.POST, consumes = {"application/xml", "application/json"}, produces = {"application/xml", "application/json"})
公共
public Response produceMessage(@PathVariable String topic, @RequestBody String message) {
return new Response();
}
答案 1 :(得分:6)
如果您在bean中使用JAXB注释来定义@XmlRootElement
和@XmlElement
,那么它应该将其编组为xml。 Spring会在看到bean时将bean编组为xml:
请按照此示例了解更多信息:
http://www.mkyong.com/spring-mvc/spring-3-mvc-and-xml-example/