[springboot] CORS 설정

1
2
3
4
5
6
7
@Configuration
public class WebConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**").allowedOrigins("*").allowedMethods("*");
    }
}
cs


WebMvcConfigurer의 addCorsMappings 재정의 해주면 된다.

현재 설정은 모든 path, origin, methods를 허용한다는 건데 각자의 상황에 맞게

수정하면 된다. @Configuration을 적어줘야 적용된다. cors는 재시동 필요

'Programming > Springboot-tip' 카테고리의 다른 글

[STS] spring-loaded 적용 안될 때  (0) 2018.07.12
[springboot] port 변경  (0) 2016.09.06