TIL

[TIL][ContentProject] h2-console 403 error

dbssk 2023. 7. 27. 01:05

위 이미지 처럼 처음에는 그냥 "/h2-console/**" 을 추가해주었는데 계속 403 오류가 발생했다.

.requestMatchers(new AntPathRequestMatcher("/h2-console/**")).permitAll()
.requestMatchers("/user/signup", "/user/signin").permitAll()

이렇게 따로 new AntPathRequestMatcher() 를 사용해서 주소를 넣어주니 해결되었다.