后端测试报错Not Found 404

后端测试使用Apifox发送请求,查找倒是很轻易就能实现,可是删除一直报错,后端测试报错Not Found 404_第1张图片

没有这个方法Not Found 404/方法不被允许Method Not Allowed 405/内部服务器错误Internal Server Error 500。

405是浏览器端(或客户端)请求方法和服务端处理该路径的请求的处理方法不一致造成的。

后面查看很多资料终于找到问题所在:

http://localhost:81/users?userId=7

这里的userId是作为传参;

@DeleteMapping("/{userId}")这里的userId是作为路径。

解决方法:

将删除方法指定路径,再将userId作为路径动态传递 

后端测试报错Not Found 404_第2张图片

这样用userId也能删除指定内容↓

后端测试报错Not Found 404_第3张图片

 数据库

后端测试报错Not Found 404_第4张图片

后端测试报错Not Found 404_第5张图片

 

你可能感兴趣的:(服务器,java,数据库)