转发:原博客
1.他的作用是指定返回值类型和返回值编码
2.consumes: 指定处理请求的提交内容类型(Content-Type),例如application/json, text/html;
一、produces的例子
produces第一种使用,返回json数据,下边的代码可以省略produces属性,因为我们已经使用了注解@responseBody就是返回值是json数据:
1 @Controller 2 @RequestMapping(value = "/pets/{petId}", method = RequestMethod.GET, produces="application/json") 3 @ResponseBody
produces第二种使用,返回json数据的字符编码为utf-8.:
1 @Controller 2 @RequestMapping(value = "/pets/{petId}", produces="MediaType.APPLICATION_JSON_VALUE"+";charset=utf-8") 3 @ResponseBody
二、consumes的例子(方法仅处理request Content-Type为“application/json”类型的请求。指定处理请求的 提交内容类型 (Content-Type))
1 @Controller 2@RequestMapping(value = "/pets", method = RequestMethod.POST, consumes="application/json")