Controller内的三个注释解析@RequestMapping、@PostMapping、@GetMapping
Controller内的三个注释解析@RequestMapping、@PostMapping、@GetMapping
@RequestMapping
包含其他返回类型,Post,Get,PATCH,PUT等都可以响应,一般情况下使用@RequestMapping
注释即可
@PostMapping
响应类型就是Post,相当于@RequestMapping(value = "/hello",method = RequestMethod.Post)
@GetMapping
响应类型就是Get,相当于@RequestMapping(value = "/hello",method = RequestMethod.Get)