I trying @RequestMapping(value = \"/test\", method = RequestMethod.POST) but is error
@RequestMapping(value = \"/test\", method = RequestMethod.POST)
Code is
@Controller public class HelloWordContr
I solved this error by including a get and post request in my controller: method={RequestMethod.POST, RequestMethod.GET}