一般RESTful都是返回json,有时候可能需要返回xml,我们该如何操作呢?
Jackson
Maven增加jar文件导入
<dependency><groupId>com.fasterxml.jackson.dataformat</groupId><artifactId>jackson-dataformat-xml</artifactId>
</dependency>
<dependency><groupId>org.codehaus.woodstox</groupId><artifactId>woodstox-core-asl</artifactId><version>4.1.0</version>
</dependency>
<dependency><groupId>org.apache.httpcomponents</groupId><artifactId>httpclient</artifactId></dependency>
模型对象
@JacksonXmlRootElement(localName = "user")
public class User {private Long id;@JacksonXmlCData@JacksonXmlProperty(localName = "Content")private String content;
注解说明
@JacksonXmlRootElement注解中有localName属性,该属性如果不设置,那么生成的XML最外面就是
<User></User>,而不是<user></user>@JacksonXmlCData注解是为了生成<![CDATA[text]]>
这样的数据,如果你不需要,可以去掉@JacksonXmlProperty注解通常可以不需要,但是如果你想要你的xml节点名字,首字母大写。比如例子中的Content,那么必须加这个注解,并且注解的localName填上你想要的节点名字。最重要的是!实体类原来的属性content必须首字母小写!否则会被识别成两个不同的属性。有了上面的配置,在Controller返回实体类的时候,就会像转换Json一样,将实体类转换为xml对象了。有时候你的浏览器并不能识别xml,是因为你返回的content-type不是xml,可以通过修改@RequestMapping注解的produces属性来修改:
输出xml
@RequestMapping(value = "/user", method = RequestMethod.GET, produces = { "application/xml" })
@ResponseBody
public User user() {return new User(1L, "zsh");
}
提交xml
同样的,你也可以将xml请求自动转换为实体:
@RequestMapping(value = "/user", method = RequestMethod.POST, consumes = { "text/xml" }, produces = {"application/xml" })@ResponseBodypublic User post(@RequestBody User user) {return user;}
JAXB相关的重要Annotation
@XmlRootElement:表示映射到根目录标签元素@XmlElement:表示映射到子元素@XmlAttribute:表示映射到属性@XmlElementWrapper :表示类型是集合元素的子元素的上层目录
注:@XmlElementWrapper仅允许出现在集合属性上。
UserControllerTest
public class UserControllerTest {@Testpublic void testPost() throws Exception {// 直接字符串拼接StringBuilder builder = new StringBuilder();// xml数据存储builder.append("<user><id>1</id><Content>JE-GE</Content></user>");String data = builder.toString();System.out.println(data);String url = "http://localhost:8080/user";CloseableHttpClient httpClient = HttpClients.createDefault();HttpPost httpPost = new HttpPost(url);httpPost.setEntity(new StringEntity(data, "text/xml", "utf-8"));CloseableHttpResponse response = httpClient.execute(httpPost);HttpEntity entity = response.getEntity();String content = EntityUtils.toString(entity);System.out.println("content:" + content);}
}
如果感觉不错的话请给我点赞哟!!!