一、RestController
@RestController 是@Controller和@ResponseBody的缩写
二、@getMapping和PostMapping
@GetMapping是@RequestMapping(method = RequestMethod.GET)的缩写
@PostMapping是@RequestMapping(method = RequestMethod.POST)的缩写
一、RestController
@RestController 是@Controller和@ResponseBody的缩写
二、@getMapping和PostMapping
@GetMapping是@RequestMapping(method = RequestMethod.GET)的缩写
@PostMapping是@RequestMapping(method = RequestMethod.POST)的缩写