内容来自《Java Web 程序员面试笔试宝典》
https://weread.qq.com/web/reader/68d32700813ab8027g012d72k9bf32f301f9bf31c7ff0a60#outline?noScroll=1
【出现频率】★★★☆☆ 【学习难度】★☆☆☆☆
答案:可以在@RequestMapping注解或@GetMapping注解中添加method=RequestMethod.GET属性。如果要求POST方式,则配置成method=RequestMethod.POST,或使用@PostMapping注解进行同样的配置。@RequestMapping不配置method属性,则同时支持POST、GET、PUT、DELETE等方式。