Spring Security, H2 연동했을때 문제해결
application.properties
spring.h2.console.enabled=true
SecurityConfig.java
package com.pgrrr.book.springboot;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/h2-console/*").permitAll();
http.csrf().disable();
http.headers().frameOptions().disable();
}
}