Spring boot Cors 셋팅 주의점
아무리 셋팅을 해도 적용이 안되서 패키지 위치를 main()함수가 있는 패키지 아래에 위치 시키니 적용됨 package com.example.demo.config가 중요함 package com.example.demo.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class WebConfig implements WebMvcConfigu..
2021.03.31