摘抄官方文档: spring boot配置 iframe同源可访问
Posted 知识源于分享
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了摘抄官方文档: spring boot配置 iframe同源可访问相关的知识,希望对你有一定的参考价值。
使用java配置,跟spring security配置在一起
@EnableWebSecurity public class WebSecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http // ... .headers() .frameOptions().sameOrigin() .httpStrictTransportSecurity().disable(); } }
如果是使用xml配置:
<http> <!-- ... --> <headers> <frame-options policy="SAMEORIGIN" /> <hsts disable="true"/> </headers> </http>
以上是关于摘抄官方文档: spring boot配置 iframe同源可访问的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot 2.2.5.RELEASE 非官方中文文档