controller方法注解@RequestMapping(value="/save",method=RequestMethod.POST),客户端应该用RESTClient的()方法
举一反三
- 使用@RequestMapping注解限定POST请求方法时,需要指定() A: method=RequestMethod.POST B: method=HttpMethod.POST C: method=POST
- 使用@RequestMapping注解限定POST请求方法时,需要指定()。 A: method=RequestMethod.POST B: method=HttpMethod.POST C: method=POST D: method=Method.POST
- @RequestMapping注解的属性中,当method属性的值缺失的时候,默认为都支持post方法和Get方法。
- 使用@RequestMapping注解限定POST请求方法时,需要指定()
- 使用@RequestMapping注解限定GET请求方法时,需要指定method=____。