@RequestMapping 用法详解之地址映射

来源:互联网 发布:adb打开软件 编辑:程序博客网 时间:2024/05/15 01:31

链接:http://www.cnblogs.com/qq78292959/p/3760560.html

链接:http://blog.csdn.net/blueheart20/article/details/45174399


consumes: 指定处理请求的提交内容类型(Content-Type),例如application/json, text/html;
produces:    指定返回的内容类型,仅当request请求头中的(Accept)类型中包含该指定类型才返回;

0 0