multiplevalues1 Tomcat8.5 + SpringBoot CORS 문제 해결 환경은 SpringBoot의 내장톰캣을 이용하지 않고 톰캣 서버를 별도로 설치하여 그 안에서 스프링부트 앱을 올리는 구조였다. 프로젝트의 API를 프론트개발 쪽에서 호출해야 하는데 CORS 문제가 있어 Spring Security에서 CORS 관련 코드를 추가하여 해결했다. @Override protected void configure(HttpSecurity http) throws Exception { http ... .and() .cors().configurationSource(corsConfigurationSource()) .and() ... } @Bean public CorsConfigurationSource corsConfigurationSource() { CorsConfiguration conf.. 2021. 9. 10. 이전 1 다음