SpringBoot解决跨域请求问题 - 配置Cors

报错: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
报错
就是说跨域问题。

HTTP访问控制(CORS)

1.使用@CrossOrigin注解

如果想要对某一接口配置 CORS,可以在方法上添加 @CrossOrigin 注解 :

@CrossOrigin(origins = {"http://localhost:9000", "null"})
@RequestMapping(value = "/test", method = RequestMethod.GET)
public String greetings() {
}

如果想对一系列接口添加 CORS 配置,可以在类上添加注解,对该类声明所有接口都有效:

@CrossOrigin(origins = {"http://localhost:9000", "null"})
@RestController
@SpringBootApplication
public class SpringBootCorsTestApplication {
}

2.添加配置类

如果想添加全局配置,则需要添加一个配置类 :
SpringBoot解决跨域请求问题 - 配置Cors_第1张图片

@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")
                .allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")
                .maxAge(3600)
                .allowCredentials(true);
    }
}

学习自 SpringBoot配置Cors解决跨域请求问题.

你可能感兴趣的:(各种报错)