Spring boot Cors 셋팅 주의점

2021. 3. 31. 22:39Java/Spring Boot

아무리 셋팅을 해도 적용이 안되서 패키지 위치를 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 WebMvcConfigurer {
	
	@Override
	public void addCorsMappings(CorsRegistry registry) {
		registry.addMapping("/**")
			.allowedOrigins("http://localhost:8081");
	}
}