我正在使用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
最佳答案
原文链接:https://www.f2er.com/springboot/431674.html