Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Como liberar o console do h2 após inclusão de autentição no projeto.

Depois da inclusão da autenticação no meu projeto não consigo mais acessar o /h2-console até tentei incluir na classe SecurityConfigurations um

.antMatchers("/h2-console").permitAll()

mas sem sucesso. O que preciso fazer pra liberar o console?

1 resposta
solução!

tenta:

http.authorizeRequests().antMatchers("/").permitAll()
            .and()
            .authorizeRequests().antMatchers("/h2-console/**").permitAll()
            .and()
            .headers().frameOptions().disable()
            .and()
            .csrf().ignoringAntMatchers("/h2-console/**")
            .and()
            .cors().disable();