Spring-Cloud的简单使用

SpringCloud+Docker可以说是目前互联网公司最简单最流行的也最通用的架构。

常见注解

  • @GetMapping
    是一个组合注解 是@RequestMapping(method = RequestMethod.GET)的缩写
  • @PostMapping
    是一个组合注解 是@RequestMapping(method = RequestMethod.POST)的缩写

猜你喜欢

转载自blog.csdn.net/define_us/article/details/84337779