springBoot--组合注解RestController,GetMapping,PostMapping

一、RestController

@RestController 是@Controller和@ResponseBody的缩写

二、@getMapping和PostMapping

@GetMapping是@RequestMapping(method = RequestMethod.GET)的缩写

@PostMapping是@RequestMapping(method = RequestMethod.POST)的缩写

posted @ 2019-06-24 22:39  来一杯可乐  阅读(1717)  评论(0编辑  收藏  举报