SpringSecurityiFrame'X-Frame-Options'to'deny'报错的解决方法
程序员文章站
2022-06-26 11:40:41
报错信息如下:
Refused to display ‘https://localhost:8080/msc/ordertype’ in a frame...
报错信息如下:
Refused to display ‘https://localhost:8080/msc/ordertype’ in a frame because it set ‘X-Frame-Options’ to ‘deny’.
原因:
Spring-Security 默认是设置了这个 “X-Frame-Options” 属性为DENY
解决:在http配置中设置
<frame-options policy="SAMEORIGIN"> </frame-options>
X-Frame-Options:
他的值有三个:
(1)DENY — 表示该页面不允许在 frame 中展示,即便是在相同域名的页面中嵌套也不允许。
(2)SAMEORIGIN — 表示该页面可以在相同域名页面的 frame 中展示。
(3)ALLOW-FROM https://example.com/ — 表示该页面可以在指定来源的 frame 中展示。
上一篇: CSS资料之链接样式代码实例
下一篇: 现在猪也这么挑食啊
推荐阅读
-
mysql报错1033 Incorrect information in file: ‘xxx.frm’问题的解决方法
-
json解析时遇到英文双引号报错的解决方法
-
Win10无法访问网络报错0x80072FBF的解决方法
-
win7下docker安装与报错问题的解决方法
-
Orcle的package中访问其它Schema的表报错ORA-00942解决方法
-
windows无法启动MySQL服务报错1067的解决方法
-
磁盘管理报错怎么办?系统提示“RPC服务器不可用”的原因及解决方法介绍
-
将string类型的数据类型转换为spark rdd时报错的解决方法
-
VS2017添加EF的MVC控制器报错的解决方法
-
使用Mysql5.x以上版本出现报错#1929 Incorrect datetime value: '' for column 'createtime'的快速解决方法