天天看點

@RequestMapping和@GetMapping和PostMapping的差別.md其實很簡單

其實很簡單

GetMapping

> @GetMaping用于将HTttp get請求映射到特定處理程式的方法注解,具體來說
           
@Getmapping是一個組合注解 = @RequestMapping(method = RequestMethod.GET)的縮寫

PostMapping

@PostMapping用于将Http post請求映射到特定處理程式的方法注解,具體來說,
           
@PostMapping是一個組合注解,是@RequestMapping(method = RequestMethod.POST)的縮寫