11
Spring CORS 'Access-Control-Allow-Origin'헤더가 없습니다.
web.xml을 Java 구성으로 이식 한 후 다음 문제가 발생합니다. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:63342' is therefore not allowed access. 몇 가지 Spring 참조를 기반으로 다음 시도가 시도되었습니다. @Configuration @ComponentScan(basePackageClasses = AppConfig.class, useDefaultFilters = false, includeFilters = { @Filter(org.springframework.stereotype.Controller.class) }) @EnableWebMvc public class WebConfig extends …
85
spring
spring-mvc
cors