一、RestController

@RestController 是@Controller和@ResponseBody的缩写

二、@getMapping和PostMapping

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

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

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

相关文章:

  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2022-01-11
  • 2021-08-25
  • 2022-12-23
  • 2021-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-17
  • 2021-07-17
  • 2022-12-23
相关资源
相似解决方案