码迷,mamicode.com
首页 > 编程语言 > 详细

关于spring security中设置header无效问题解决方式.

时间:2021-01-25 10:52:22      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:xtend   log   override   throw   问题   request   csrf   请求   adapter   

1.查看spring security,发现会自动创建多个对象。此时需要通过排序来进行,将自己设置的配置文件提前初始化来满足

@EnableWebSecurity
@Order(1) //排序来处理这样的问题。但是没有治本,需要查看为什么要初始化多个对象...
public class SecurityConfig extends WebSecurityConfiguerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
//这里会新建一个对象。 http.headers().frameOptions().sameOrigin(); // 同源跨域,默认DENY http.csrf().disable() .authorizeRequests() .anyRequest().permitAll() .and().logout().permitAll(); http.cors().configurationSource(corsConfigurationSource()); } //配置跨域访问资源 private CorsConfigurationSource corsConfigurationSource() { CorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); CorsConfiguration corsConfiguration = new CorsConfiguration(); corsConfiguration.addAllowedOrigin("*"); // 同源配置,*表示任何请求都视为同源,若需指定ip和端口可以改为如“localhost:8080”,多个以“,”分隔; corsConfiguration.addAllowedHeader("*");// header,允许哪些header corsConfiguration.addAllowedMethod("*"); // 允许的请求方法,PSOT、GET等 ((UrlBasedCorsConfigurationSource) source).registerCorsConfiguration("/**", corsConfiguration); // 配置允许跨域访问的url return source; } }

  

关于spring security中设置header无效问题解决方式.

标签:xtend   log   override   throw   问题   request   csrf   请求   adapter   

原文地址:https://www.cnblogs.com/zf-crazy/p/14314698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!