CORS 설정

spring-security 2020. 7. 17. 23:41


검색하면 등록하는 방법이 2가지 있는데
1. Servlet단위의 Filter를 구현하는 방법
2. WebMvcConfigurer와 ResourceServerConfigurerAdapter 내 설정을 하는 방법
으로 나뉘었다.

- spring 문서
https://docs.spring.io/spring/docs/5.0.7.RELEASE/spring-framework-reference/web.html#mvc-cors

Web on Servlet Stack

This part of the reference documentation covers support for Servlet stack, WebSocket messaging that includes raw WebSocket interactions, WebSocket emulation via SockJS, and pub-sub messaging via STOMP as a sub-protocol over WebSocket. 4.1. Introduction The

docs.spring.io


- OAuth2 사용시 설정
https://taes-k.github.io/2019/12/05/spring-cors/

Spring OAuth2 사용시 cors 설정

CORS Cross Origin Resource Sharing(CORS)는 이름에서 알 수 있듯이 Origin (출처)를 교차하여 자원을 공유한다는 뜻으로, 도메인혹은 포트가 다른 서비스의 자원을 요청하는 내용을 담고 있습니다. 일반적으

taes-k.github.io

- cors filter로 설정

https://codediver.tistory.com/135

[Spring] 크로스 도메인(CORS)

[Spring Framework] 다른 도메인에서 AJAX로 접근하면 Access-Control-Allow-Origin 에러가 발생한다. 해결 방법은 JSONP 요청. JSONP로 ajax 호출을 하기 위해선 함수안에 json 문자열이 들어간 형식으로 서버에..

codediver.tistory.com

https://stackoverflow.com/questions/51720552/enabling-cors-globally-in-spring-boot

Enabling CORS globally in Spring Boot

I tried to enable CORS globally like this: @Configuration @ComponentScan("com.example") @EnableWebMvc public class OriginFilter extends WebMvcConfigurerAdapter { @Override public void

stackoverflow.com


- ssl filter 설정
https://stackoverflow.com/questions/58115578/spring-boot-cors-with-https-failing/59561352#59561352


- http는 잘되고 https로 접속시 cors 오류 발생시 https://도메인 추가해 보자(본인 도메인이더라도 추가해 보자)
protocol, host, port 셋 중 하나라도 다르면 다른 출처로 인식


- spring-security
http.cors();

https://www.baeldung.com/spring-cors

CORS with Spring | Baeldung

Simple config for CORS with the built-in support in Spring MVC.

www.baeldung.com


https://gowoonsori.com/error/springsecurity-cors/

[SPSP] Bellman Ford

단일 최단경로를 구하는 알고리즘인 Bellman Ford알고리즘에 대해 정리하고 직접 구현해보는 글

gowoonsori.com



'spring-security' 카테고리의 다른 글

rest login & ajax login  (0) 2020.07.19
CSRF 관련  (0) 2020.07.17
OAuth2 관련 글  (0) 2020.03.03
spring security 5.0 에서 달라진 암호변환정책, DelegatingPasswordEncoder  (0) 2020.02.18
spring security - spring boot  (0) 2019.08.24
Posted by 張's blog
,