美文网首页程序员
spring boot 异常Refused to display

spring boot 异常Refused to display

作者: 龙行天下简书 | 来源:发表于2017-12-27 09:09 被阅读0次

spring boot项目,请求回来,响应头中X-Frame-Options被设置为DENY,如下图

image.png

这个会导致使用iframe模式上传图片或者iframe嵌套页面时,会报如下异常信息:
Refused to display in a frame because it set 'X-Frame-Options' to 'DENY'

解决方案:扩展WebSecurityConfigurerAdapter类,增加如下代码


image.png

增加http.headers().frameOptions().disable();这个配置后,响应头中就找不到这个配置了。

那么这个X-Frame-Options作用是什么呢?

image.png

相关文章

网友评论

    本文标题:spring boot 异常Refused to display

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