springBoot springSecurty x-frame-options deny (frame不能显示)

项目中用到iframe嵌入网页,然后用到springsecurity就被拦截了 浏览器报错  x-frame-options deny

原因是因为springSecurty使用X-Frame-Options防止网页被Frame

解决办法把x-frame-options disable即可


      protected void configure(HttpSecurity http) throws Exception {
            http.authorizeRequests()
                    .anyRequest().authenticated()
                    .and()
                    .formLogin().defaultSuccessUrl("/swagger-ui.html").failureUrl("/login") //登录成功之后的跳转
                    .permitAll()
                    .and()
                    .headers().frameOptions().disable()
                    .and()
                    .logout().logoutSuccessUrl("/login")
                    .permitAll();
        }--------------------- 
作者:white...... 
来源:CSDN 
原文:https://blog.csdn.net/whiteForever/article/details/73201586 
版权声明:本文为博主原创文章,转载请附上博文链接!

猜你喜欢

转载自blog.csdn.net/qq_35232663/article/details/86110627
今日推荐