H2 database console spring boot Load denied by X-Frame-Options
It’s also possible to simplify the answer from @chrosciu with this: @Configuration public class WebSecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http.headers().frameOptions().disable(); } }