기본 콘텐츠로 건너뛰기

Spring Security Post 방식 요청 허용

.authorizeHttpRequests()
.requestMatchers("/postUrl").permitAll()

.and()
.csrf()
.ignoringRequestMatchers("/postUrl")

post 방식 요청은 반드시 csrf에서도 ignoring 해줘야 한다

이 블로그의 인기 게시물