.authorizeRequests() 이 뒤에 아래 부분 추가
.antMatchers("/h2-console/**" )
.permitAll()
.anyRequest().authenticated()
.and()
.csrf()
.ignoringAntMatchers("/h2-console/**")
.and()
.headers()
.addHeaderWriter(
new XFrameOptionsHeaderWriter(
new WhiteListedAllowFromStrategy(Arrays.asList("localhost"))
)
)
.frameOptions().sameOrigin()
총 3단계로 보안 해제 절차를 거쳐야 H2-console에 접근 가능
.and()
.headers()
.frameOptions().sameOrigin()
이부분만 추가해도 h2-console 관리창 접근 가능