@RestController 表示:@Controller+@ResponseBody
@GetMapping 表示:get方式请求,
@PostMapping 表示post方式请求,也可以写成@RequestMapping(method=RequestMethod.POST)