美文网首页
Spring Resource Server CORS

Spring Resource Server CORS

作者: 寻找无名的特质 | 来源:发表于2023-03-08 05:53 被阅读0次

    在使用Spring 3.0.2 配置Spring Resource Server时遇到CORS问题,现在总结一下。
    在使用Spring Resource Server时,必须使用HttpSecurity中的cors显示启动跨域访问支持,否则控制器上的@CrossOrigin()标签不起作用。如果希望在全局配置跨域访问支持或者不希望在控制器中引用@CrossOrigin标签,需要定义bean如下:

        @Bean
        public CorsConfigurationSource corsConfigurationSource()
        {
            CorsConfiguration configuration = new CorsConfiguration();
            configuration.setAllowedOrigins(Arrays.asList("http://host.docker.internal:5002"));
            configuration.setAllowedMethods(Arrays.asList("GET","POST"));
            configuration.setAllowCredentials(true);
            configuration.addAllowedHeader("Authorization");
            UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
            source.registerCorsConfiguration("/**", configuration);
            return source;
        }
    

    相关文章

      网友评论

          本文标题:Spring Resource Server CORS

          本文链接:https://www.haomeiwen.com/subject/vkbnhdtx.html