添加 Spring Security 后,为什么我会收到'不存在'Access-Control-Allow-Origin”标头”错误?
Spring Security CORS 过滤器:排除“不存在‘Access-Control-Allow-Origin’标头”
说明
将 Spring Security 添加到现有项目可能会在跨源资源共享 (CORS) 请求期间触发“不存在‘Access-Control-Allow-Origin’标头”错误。出现此错误的原因是请求中未添加 Access-Control-Allow-Origin 响应标头。
解决方案
方法 1:
更新您的代码以使用 Spring Security 的内置 CORS 支持。将以下配置添加到您的应用程序中:
<code class="java">@Configuration public class WebConfig extends WebMvcConfigurerAdapter { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowedMethods("HEAD", "GET", "PUT", "POST", "DELETE", "PATCH"); } }</code>
登录后复制
方法 2:
如果您想更好地控制 CORS 配置,请使用以下方法:
<code class="java">@Configuration public class SecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http.cors(); } @Bean public CorsConfigurationSource corsConfigurationSource() { final CorsConfiguration configuration = new CorsConfiguration(); configuration.setAllowedOrigins(ImmutableList.of("*")); configuration.setAllowedMethods(ImmutableList.of("HEAD", "GET", "POST", "PUT", "DELETE", "PATCH")); configuration.setAllowCredentials(true); configuration.setAllowedHeaders(ImmutableList.of("Authorization", "Cache-Control", "Content-Type")); final UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); source.registerCorsConfiguration("/**", configuration); return source; } }</code>
登录后复制
附加说明:
- 避免使用 http.authorizeRequests().antMatchers(HttpMethod.OPTIONS, "/**").permitAll();或 web.ignoring().antMatchers(HttpMethod.OPTIONS);,因为它们是不正确的解决方案。
- 确保您的 CORS 过滤器位于过滤器链中 SecurityContextPersistenceFilter 之后和 LogoutFilter 之前。
- 验证 Access-Control-Allow-Methods 标头是否包含必要的 HTTP 动词:GET、PUT、POST 等。
- 如果您仍然遇到 CORS 错误,请检查应用程序日志以获取任何可能有帮助的其他信息查明问题。
以上是添加 Spring Security 后,为什么我会收到'不存在'Access-Control-Allow-Origin”标头”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片