현재 MVC 패턴이 맞는지 endpoint 가 맞는지 묻는 에러가 발생했다. 전에 들었던 교육에서 스프링 시큐리티 부분과 jwt 토큰을 사용해서 인증을 하는 부분을 다시 복습하다가 발생한 에러이다.
This method cannot decide whether these patterns are Spring MVC patterns or not.
If this endpoint is a Spring MVC endpoint, please use `requestMatchers(MvcRequestMatcher)`;
otherwise, please use `requestMatchers(AntPathRequestMatcher)`.
Security에서 endpoint에서 로그인 부분은 전부 접근이 가능해야하기 때문에 모든 사람에게 권한을 열다가 발생했다.
원래는 이렇게 써도됬었는데 최신 버전의 스프링시큐리티에서는 안되는 부분인거같다.