프로그래밍과 잡담

[Spring Boot] CORS 관련 본문

프로그래밍/Java,Kotlin

[Spring Boot] CORS 관련

크레온 2021. 4. 19. 20:54

개삽질을 해서 적어 놓음.

 

JWT를 이용해서 로그인 처리하고 JWT 토큰을 이용해서 글 쓰기를 할려고 하는데 자꾸  아래와 같은 오류가 발생하였음..

 

CORS Preflight Did Not Succeed

 

인터넷 뒤져보니 여러가지 있긴한데 뭘 잘못했는지 계속 안됐음.

그래서 하다보니

 

아래 한줄 추가하니 해결됨.. 젠장할..

 

@Configuration
public class WebSecuriyConfig extends WebSecurityConfigurerAdapter{

	@Override
	protected void configure(HttpSecurity httpSecurity) throws Exception {
    
    	httpSecurity.csrf().disable()
        // don't authenticate this particular request
        .authorizeRequests()
        // ... 등등등 있는데 아래의 것을 추가하면됨. 
        .and()
        .cors()
        
    }

}

 

어이 없게도 바로 해결이 되네. 

 

 

반응형
Comments