Back/Spring Java

Spring ssl cors설정 403오류

밍꿔 2022. 4. 8. 18:55


반응형
@Override
public void addCorsMappings(CorsRegistry registry) {
	registry.addMapping("/api/stats/extration").allowedOrigins("http://무언가의도메인.com")
			.allowedMethods(
            HttpMethod.GET.name()
            ,HttpMethod.POST.name()
            ,HttpMethod.OPTIONS.name()
            );
}

 

https://oingdaddy.tistory.com/243

 

Spring Security CORS 설정하기

예전에 CORS(Cross-Origin Resource Sharing)를 filter를 사용해서 설정하는것에 대해 포스팅을 한적이 있다. Spring Security를 사용하면 이렇게 별도의 filter를 만들지 않고 간단하게 CORS 설정을 할 수 있다...

oingdaddy.tistory.com

https://duooo-story.tistory.com/22

 

Spring을 사용하는 서버에서 CORS 설정 과정에서 발생한 이슈들

신규 기능으로 엑셀 다운로드 기능을 개발하는 도중, CORS문제가 났던 문제를 기록해보려 합니다. 먼저 간략하게 구성도를 그려보면 브라우저(A.com)에서 B.com 으로 호출을 하고 B.com에선 nginx가 프

duooo-story.tistory.com

 

반응형