组合注解(RequestMapping的变形)

  • @GetMapping = @RequestMapping(method = RequestMethod.GET)
  • @PostMapping = @RequestMapping(method = RequestMethod.POST)
  • @PutMapping = @RequestMapping(method = RequestMethod.PUT)
  • @DeleteMapping = @RequestMapping(method = RequestMethod.DELETE

MARK埋个坑

https://blog.csdn.net/xcc_2269861428/article/details/80432765

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-07
  • 2021-06-13
  • 2021-11-19
  • 2021-05-24
猜你喜欢
  • 2022-02-25
  • 2022-12-23
  • 2018-03-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案