티스토리 뷰
Spring boot
springboot vue.js 연동시 put, delete 403에러 Invalid CORS request 나면서 안될 때
pakker 2020. 11. 22. 19:39
spring boot 에서 cors 설정 시 작성했던 webconfig를 수정해 주자..
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**");
}
}
여기에서
하단처럼 allowedMethods를 작성해줌
default로는 GET,POST,HEAD밖에 없어서 안됬던 것임
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**").allowedOrigins("*").allowedMethods("GET", "POST","PUT", "DELETE");
}
}
'Spring boot' 카테고리의 다른 글
h2-console 설치, 실행 처음에 해야 할 것 (0) | 2021.02.08 |
---|---|
artifact contains illegal characters intellij (0) | 2020.11.24 |
LocalDateTime, LocalDate Gson 사용해서 전송 시 json형태로 나타날 경우 (0) | 2020.11.22 |
IntelliJ로 메인 메소드를 실행했는데 그레이들로 실행한것처럼 로그가 출력될 때 (0) | 2020.11.02 |
@SpringBootApplication (0) | 2020.10.19 |
댓글