HTTP Status 404 - Not Found的一种情况
程序员文章站
2022-05-31 21:37:58
...
原本的发生错误的代码:
@RequestMapping(value="/api/createTack",method = RequestMethod.POST)
public AjaxResult<?> createTack(@RequestBody HashMap data){
return AjaxResult.success();
}
报的错误:
修改后的代码:
@RequestMapping(value="/api/createTack",method = RequestMethod.POST)
@ResponseBody
public AjaxResult<?> createTack(@RequestBody HashMap data){
return AjaxResult.success();
}
结论:加上 @ResponseBody 就可以解决问题
推荐阅读
-
使用IDEA快速构建ssm项目并快速解决遇到的常见的HTTP Status 404 – Not Found坑
-
解决Tomcat启动显示 HTTP Status 404 – Not Found 无法访问index.jsp
-
There was an unexpected error (type=Not Found, status=404)---采用layui出现的问题
-
idea:springboot整合jsp出现的错误:There was an unexpected error (type=Not Found, status=404). /WEB-INF/jsp。。
-
struts2 http status 404 result 'null' not found----ssh框架
-
Servlet跳转失败问题:HTTP Status 404 not found
-
SpringCloud版本引发的type=Not Found, status=404
-
HTTP Status 404 - Not Found的一种情况
-
WebSocket Error: Incorrect HTTP response. Status code 404, Not Found
-
angular6页面刷新时报HTTP Status 404 – Not Found