springboot解决跨域访问

Posted lazyli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot解决跨域访问相关的知识,希望对你有一定的参考价值。

/**
 * 跨域设置
 * @Version 1.0.0
 * @Description
 */
@Configuration
public class CorsConfig extends WebMvcConfigurationSupport {

    @Override
    protected void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")
                .allowCredentials(true)
                .allowedMethods("GET","POST","DELETE","PUT")
                .maxAge(3600);
    }
}

以上是关于springboot解决跨域访问的主要内容,如果未能解决你的问题,请参考以下文章

springboot如何解决跨域问题?

springboot 解决跨域问题[不生效,就问你气不气?]

Ajax 跨域解决——SpringBoot学习

vue+springboot前后端分离工程中跨域问题的解决

Ajax 跨域解决——SpringBoot学习

36SpringBoot配置Cors解决跨域请求