오류관리

[Http] Request method 'POST' not supported

k9e4h 2018. 2. 13. 10:22

Request method 'POST' not supported





오류가 뜨면 받는쪽 Controller 부분에서


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


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


이부분이 달라서 그런건데 보내는방식에 맞게 수정해주면 된다.


둘다쓰고싶으면


@RequestMapping(value = "/", method = {RequestMethod.POST,RequestMethod.GET})


이런식으로도 사용가능하다. (출처)




/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////




검색해보면 위의 답변이 전부인듯,


나의 경우 위의 문제가 아니고 option method를 사용하는데 그것과 관련있지 않을까 싶다.


반응형