1. 程式人生 > >Spring-Cloud的簡單使用

Spring-Cloud的簡單使用

SpringCloud+Docker可以說是目前網際網路公司最簡單最流行的也最通用的架構。

常見註解

  • @GetMapping
    是一個組合註解 是@RequestMapping(method = RequestMethod.GET)的縮寫
  • @PostMapping
    是一個組合註解 是@RequestMapping(method = RequestMethod.POST)的縮寫