requestMatchers

    2023.12.06 TIL - 스프링 시큐리티 RequestMatchers

    오늘 한 것 팀 프로젝트 팀 프로젝트 오늘은 어제 작성한 일정대로 시큐리티 인증/인가, 로그인, 회원가입을 구현했다. 전 프로젝트 때도 맡았던 역할이라 구현하는데 어려움은 없었지만 코드 병합 후 다른 팀원이 사용하면서 문제가 하나 발생했다. 시큐리티에서 url 을 검사하는 requestMathcers 에 내가 사용하는 api 만등록을 해두었었다. .requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll() .requestMatchers(PathRequest.toH2Console()).permitAll() .requestMatchers(this.whiteListMapToMvcRequestMatchers(mvc)).perm..