검색하면 등록하는 방법이 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
- OAuth2 사용시 설정
https://taes-k.github.io/2019/12/05/spring-cors/
- cors filter로 설정
https://codediver.tistory.com/135
https://stackoverflow.com/questions/51720552/enabling-cors-globally-in-spring-boot
- 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
https://gowoonsori.com/error/springsecurity-cors/
'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 |