@RequestMapping对请求方法限定
生活随笔
收集整理的這篇文章主要介紹了
@RequestMapping对请求方法限定
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
@RequestMapping除了可以對url進行設置,還可以限定請求進來的方法
限定GET方法
@RequestMapping(method=RequestMethod.GET)
限定POST方法
@RequestMapping(method=RequestMethod.POST)
GET和POST都可以
@RequestMapping(method={RequestMethod.GET,RequestMethod.POST})
總結
以上是生活随笔為你收集整理的@RequestMapping对请求方法限定的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: @RequestMapping的使用
- 下一篇: SpringMVC的Controller