博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot不允许加载iframe问题解决【转】
阅读量:6085 次
发布时间:2019-06-20

本文共 777 字,大约阅读时间需要 2 分钟。

hot3.png

在spring boot项目中出现不能加载iframe

页面报一个"Refused to display 'http://......' in a frame because it set 'X-Frame-Options' to 'DENY'. "错误

解决方式:

因spring Boot采取的java config,在配置spring security的位置添加:

@Overrideprotected void configure(HttpSecurity http) throws Exception {       http.headers().frameOptions().disable();     http      .csrf().disable();     http      .authorizeRequests()             .anyRequest().authenticated();            http.formLogin()          .defaultSuccessUrl("/platform/index",true)          .loginPage("/login")          .permitAll()        .and()          .logout()           .logoutUrl("/logout");            http.addFilterBefore(wiselyFilterSecurityInterceptor(),FilterSecurityInterceptor.class);              }

转载于:https://my.oschina.net/u/2859567/blog/756269

你可能感兴趣的文章
H5实现全屏与F11全屏
查看>>
处理excel表的列
查看>>
C#数据采集类
查看>>
quicksort
查看>>
【BZOJ2019】nim
查看>>
LINUX内核调试过程
查看>>
【HDOJ】3553 Just a String
查看>>
Java 集合深入理解(7):ArrayList
查看>>
2019年春季学期第四周作业
查看>>
linux环境配置
查看>>
tomcat指定配置文件路径方法
查看>>
linux下查看各硬件型号
查看>>
epoll的lt和et模式的实验
查看>>
Flux OOM实例
查看>>
07-k8s-dns
查看>>
Android 中 ListView 分页加载数据
查看>>
oracle启动报错:ORA-00845: MEMORY_TARGET not supported on this system
查看>>
Go方法
查看>>
Dapper丶DapperExtention,以及AbpDapper之间的关系,
查看>>
搞IT的同学们,你们在哪个等级__那些年发过的帖子
查看>>