728x90 CORS2 [SpringBoot 설정] CORS 허용 설정 @Configuration public class WebConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") //** 하면 전부다 허용 .allowedOrigins("*") .allowedMethods(HttpMethod.POST.name(), HttpMethod.GET.name(), HttpMethod.PUT.name(), HttpMethod.DELETE.name()) .allowCredentials(false) .allowedHeaders("*") .maxAge(3600); } } 프로젝트 2020. 6. 20. [스프링 부트 개념과 활용] 4-9. 스프링 웹 MVC 11부: CORS 스프링 부트 개념과 활용 4. 스프링 부트 활용 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/springboot-concept-uses/tree/chap04-09-11-mvc-cors freespringlecture/springboot-concept-uses 백기선님의 스프링 부트 개념과 활용 강의 내용 정리. Contribute to freespringlecture/springboot-concept-uses de.. 개발강의정리/Spring 2019. 11. 15. 이전 1 다음 💲 추천 글 728x90