415 unsupported media type
报(Unsupported Media Type)异常主要原因为,前端工具请求接口的类型和后端服务器定义的类型不一致造成,
一般工具请求类型和后端保持一致后,即可正常请求。
后端接口配置
/**
* @author wangwei
* @version v1.0.0
* @description 我的主页
* @date 2010-01-10
*/
@Restcontroller
@requestMAPPing("/api/{version}/mypage")
public class MyPageController extends BaseController {
@Autowired
private UserDataService userDataService;
/**
* showdoc
* @catalog v1.0.1/我的资料
* @title 我的资料-获取我的职业轨迹
* @description 根据token获取我的职业轨迹
* @method get
* @url /api/v1.0.1/mypage/findEmployeeHistory
* @param token 必选 string 手机号码
* @param time 必选 int 请求时间戳
* @return {"status":"200","message":"请求成功","data":[{"image":"http://192.168.4.170:8081/1545188000331-762166088940527181.png","orbit_id":"8","entry_time":1547006424,"company_name":"苏州富通精密机械有限公司","resignation_time":1547006424,"work_status":"52110"},{"image":"http://192.168.4.170:8081/1545188000331-762166088940527181.png","orbit_id":"9","entry_time":1547006424,"company_name":"航天信息","resignation_time":1547006424,"work_status":"52100"}],"page":null,"ext":null}
* @return_param data Object 职业轨迹数据
* @return_param status string 状态
* @remark 这里是备注信息
* @number 99
*/
@RequestMapping(value = "findEmployeeHistory", method = RequestMethod.GET, consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
public Resp findEmployeeHistory(HttpServletRequest request, String token, String time) {
Map params = new HashMap<>();
params.put("user_id", getUserid(request));
List<Map> data = userDataService.findListByUserid(params);
return Resp.success(data);
}
POSTMaiN工具添加header
content-Type
application/json
相关阅读
typedef和define都是替一个对象取一个别名,以此增强程序的可读性,区别如下:(1)原理不同#define是C语言中定义的语法,是预处理指令,在预处
问题:在android中使用MediaPlay播放音频时,播放十几次后无声音,显示E/MediaPlayer( ): error (1, -19)解决:寻找网上一些信息,猜测可
Content-Type 类型 application/x-www-form-urlencoded 数据被编码为名称/值对。这是标准的编码格式,浏览器的原生 form 表单,如果
1)center:保持原图的大小,显示在ImageView的中心。当原图的size大于ImageView的size,超过部分裁剪处理。2)centerCrop:以填满整个ImageV
敬请关注博客,后期不断更新优质博文,谢谢 这里讲解Content-Type的可用值,以及在spring MVC中如何使用它们来映射请求信息。 1. Co