Security에서 에러 발생

JIWOO YUN·2023년 8월 18일
0

SpringSecurity

목록 보기
1/2
post-custom-banner

현재 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에서 로그인 부분은 전부 접근이 가능해야하기 때문에 모든 사람에게 권한을 열다가 발생했다.

  • 원래는 이렇게 써도됬었는데 최신 버전의 스프링시큐리티에서는 안되는 부분인거같다.

  • 참고 : https://spring.io/security/cve-2023-34035

  • 참고 자료를 보고나서 위의 이미와 같이 바꾸고 에러가 해결되었다.
profile
열심히하자
post-custom-banner

0개의 댓글