springboot 跨域

Posted lvlin241

tags:

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

参考:https://blog.csdn.net/qq779446849/article/details/53102925

springboot启动类中添加2个方法:

    private CorsConfiguration buildConfig() {  
        CorsConfiguration corsConfiguration = new CorsConfiguration();
        // 允许跨域访问的域名
        corsConfiguration.addAllowedOrigin("*");// 请求头
        corsConfiguration.addAllowedHeader("*");  
        // 请求方法 HttpMethod.DELETE/POST/GET/PUT/DELETE/OPTIONS
        corsConfiguration.addAllowedMethod("*");  
        // 预检请求的有效期,单位为秒。
        corsConfiguration.setMaxAge(3600L);
        
        return corsConfiguration;  
    }  
      
    /** 
     * 跨域过滤器 
     * @return 
     */  
    @Bean  
    public CorsFilter corsFilter() {  
        UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();  
        source.registerCorsConfiguration("/**", buildConfig()); // 4  
        return new CorsFilter(source);  
    }

 

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

VSCode自定义代码片段15——git命令操作一个完整流程

如何管理在每个 git 版本中添加私有代码片段?

使用 Git 来管理 Xcode 中的代码片段

markdown Git代码片段

跨域访问方法介绍--使用片段识别符传值

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段