org.springframework.web.servlet.PageNotFound - Request method 'GET' not supported
JSP에서 form의 Method를 post를 해줘서
@RequestMapping ( value="~~~", method=RequestMethod.POST)
로 설정해 주었는데 위와 같은 에러가 났다면
일단 @RequestMapping의 method를 RequestMethod.GET으로 바꾸자.
궁금증... 나는 form을 post로 했는데 왜 GET으로 바꾸어주어야지 에러가 나지 않는건지 알아봐야한다,,,