Request method 'POST' not supported 오류가 뜨면 받는쪽 Controller 부분에서 @RequestMapping(value = "/", method = RequestMethod.POST) @RequestMapping(value = "/", method = RequestMethod.GET) 이부분이 달라서 그런건데 보내는방식에 맞게 수정해주면 된다. 둘다쓰고싶으면 @RequestMapping(value = "/", method = {RequestMethod.POST,RequestMethod.GET}) 이런식으로도 사용가능하다. (출처) ////////////////////////////////////////////////////////////////////////////////..