我试图在春天将一个对象作为 XML 返回,就像本指南一样:http ://spring.io/guides/gs/rest-service/
除了我希望对象以 xml 而不是 JSON 的形式返回。
有谁知道我该怎么做?Spring 是否有任何依赖项可以轻松地为 XML 做到这一点?或者,我是否需要使用编组器,然后以其他方式返回 xml 文件?
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();
}
如果您在 bean 中使用 JAXB 注释进行定义@XmlRootElement
,@XmlElement
那么它应该将其编组为 xml。Spring 将在看到时将 bean 编组为 xml:
按照此示例了解更多信息:
http://www.mkyong.com/spring-mvc/spring-3-mvc-and-xml-example/