postman测试接口,后台请求正常但返回404错误 今天用postman工具测试接口时,返回404错误,花费很久时间处理,之前用了这么久的工具不至于出错,只可能程序出错了。 报错信息: { "timestamp": "2021-08-18T11:46:43.469+0000", "status": 404, "error": "Not Found", "message": "No message available", "path"...
报错代码: f={"appid":"wx0e7876190882657b","env":"production","pid":"100000568810","storeId"...
"error": "Not Found","message": "No message available","path": "/data/test"} 后台程序看接⼝访问正常,可以正常输出⽇志,但是到postman⼯具中就报404错误 最终排查下来是缺少了@ResponseBody 注解。@ResponseBody 来看看为什么要添加这个注解 The course documentation states that this annotation ...