SpringSecurity不允许在frame中展示的问题

Posted IT老刘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringSecurity不允许在frame中展示的问题相关的知识,希望对你有一定的参考价值。

异常问题

Refused to display \'http://localhost:8080/xxx\' in a frame because it set \'X-Frame-Options\' to \'DENY\'

Spring Security4默认是将’X-Frame-Options’ 设置为 ‘DENY’ 所以重新配置下SpringSecurity, 在<http>标签内添加配置:

<headers>
    <frame-options policy="SAMEORIGIN" />
</h

以上是关于SpringSecurity不允许在frame中展示的问题的主要内容,如果未能解决你的问题,请参考以下文章

在泰勒多项式中展开时如何告诉 maple 两个运算符不通勤

如何在 Javafx 中展开标签栏

X-Frame-Options 拒绝加载:不允许跨域框架

无法在 Swift 中展开和折叠 TableViewCell

在uitableview swift4中展开和折叠多级部分

在Python中展平列表(任意深度)