@RequestMapping注解的属性中,当method属性的值缺失的时候,默认为都支持post方法和Get方法。
举一反三
- 注解@RequestMapping的method属性是可选的,不写的话,默认支持所有HTTP请求方法
- SpringMVC中的RequestMapping注解的method属性用于声明方法接收的请求方式,例如声明了RequestMethod.GET,则此方法只接收POST请求。
- 【单选题】下面关于 @RequestMapping 注解说法错误的是。 A. @RequestMapping 注解的默认属性是 value B. @RequestMapping 注解的 value 属性值可以省略 C. @RequestMapping 注解的 value 属性名可以省略 D. @RequestMapping 注解的 value 属性必须标注
- 使用@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