Why SpringMVC Request method 'GET' not supported?

前端 未结 6 578
误落风尘
误落风尘 2020-12-01 05:34

I trying @RequestMapping(value = \"/test\", method = RequestMethod.POST) but is error

Code is

 @Controller
 public class HelloWordContr         


        
6条回答
  •  独厮守ぢ
    2020-12-01 05:54

    Change

    @RequestMapping(value = "/test", method = RequestMethod.POST)
    

    To

    @RequestMapping(value = "/test", method = RequestMethod.GET)
    

提交回复
热议问题