类上加上@RequestMapping其访问的地址就是类上的加上方法上的菜能访问到该方法,例如上图的地址就是/hello/say
@RequestMapping(value = "/hello",method = RequestMethod.GET)
和@GetMapping(value = "/hello")是等同的
类上加上@RequestMapping其访问的地址就是类上的加上方法上的菜能访问到该方法,例如上图的地址就是/hello/say
@RequestMapping(value = "/hello",method = RequestMethod.GET)
和@GetMapping(value = "/hello")是等同的