springboot - config package

Cors 설정 ( 오버라이딩 해야함 ) @Configuration public class WebConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowedOrigins("http://localhost:8080", "http://localhost:8081") .allowedMethods("GET", "POST") .maxAge(3000); } } 메소드 (함수) 특징 addMapping CORS를 적용할 URL패턴을 정의할 수 있습니다. maxAge 원하는 시간만큼 pre-flight 리퀘스트를 캐싱 해둘 수 있습..
별이춤추는밤
'springboot - config package' 태그의 글 목록