java – 如何在Springboot Restcontroller中使用PUT方法?

前端之家收集整理的这篇文章主要介绍了java – 如何在Springboot Restcontroller中使用PUT方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用Spring boot开发一个应用程序.我尝试了所有表示动词,如GET,POST,DELETE都可以正常工作.通过使用PUT方法,它不支持弹簧启动.我是否需要添加任何新配置.

Put方法只能处理请求没有任何参数.如果我添加任何查询参数或表单数据,它不起作用.请任何专业人士帮助我解决这个问题.

@RequestMapping("/student/info")
@RequestMapping(method = RequestMethod.PUT)
public @ResponseBody String updateStudent(@RequestParam(value = "stdName")String stdName){
    LOG.info(stdName);
    return "ok";
}
@H_301_10@

Request method ‘PUT’ not supported

最佳答案
这段代码可以正常工作.您必须在类级别或函数中指定请求映射
水平.

@RequestMapping(value = "/student/info",method = RequestMethod.PUT)
public @ResponseBody String updateStudent(@RequestBody Student student){
 LOG.info(student.toString());
 return "ok";
}
@H_301_10@
原文链接:https://www.f2er.com/springboot/431674.html

猜你在找的Springboot相关文章