为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

4 回答

是否按照老师讲的来?

@RequestMapping(value = "student/{stuentId}", method = RequestMethod.PUT)
public Student updateStudent(@PathVariable("stuentId") Integer stuentId,
                            @RequestParam("studentName") String studentName,
                            @RequestParam("studentSex") String studentSex,
                            @RequestParam("studentPhone") String studentPhone,
                            @RequestParam("studentAddress") String studentAddress) {
   Student student = new Student();
   student.setStuentId(stuentId);
   student.setStudentName(studentName);
   student.setStudentSex(studentSex);
   student.setStudentAddress(studentAddress);
   student.setStudentPhone(studentPhone);
   return studentService.save(student);
}

这个是我自己写的,注意:id也要@PathVariable,其余参数再@RequestParam

0 回复 有任何疑惑可以回复我~

没问题了,我是}符号写成]了

0 回复 有任何疑惑可以回复我~

看来不只我一个人

0 回复 有任何疑惑可以回复我~

14:40

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
2小时学会Spring Boot
  • 参与学习       151599    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

put请求测试不成功

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信