package cc.mrbird.febs.gateway.configure; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; /** * WebSecurity配置 * * @author MrBird */ @EnableWebSecurity public class FebsGatewaySecurityConfigure extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http.csrf().disable().headers().frameOptions().disable(); } }