[spring security] Request method 'POST' not supported 오류
spring security 적용하고 나서 회원가입이나 로그인등 post 방식으로 controller에게 넘겨줘야 할때가 있다. 하지만 위와 같이 오류가 뜬다 그 이유는 spring security가 csrf 토큰을 원하기때문이라고는 하는데... 자세한 이유는 저도 잘 모릅니다. 아래에서 훝어보시길ㅎ https://cheese10yun.github.io/spring-csrf/ Spring Security CSRF 설정 - Yun Blog | 기술 블로그 Spring Security CSRF 설정 - Yun Blog | 기술 블로그 cheese10yun.github.io 본론으로 돌아와서 내가 찾은 2가지 방법이 있다 +(ajax 사용시) 1. jsp 파일에 추가 하기 2. spring security를 ..