[cors] spring boot 에서 cors
package com.kodegen.moneyplan.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( "*" );
}
}
WebConfig 라는 클래스 만들고 . 위 내용 적고 빌드
( 모든 접속에 허용 )