Получение входа во всплывающем окне браузера вместо перехода к собственному jsp - PullRequest
0 голосов
/ 07 февраля 2019

Демонстрация входа в Spring-boot.

Получение Войдите в браузер, чтобы получить следующий код.Вместо всплывающего окна я хочу перейти к своему

@ComponentScan
public class CustomWebSecurityConfigurerAdapter extends WebSecurityConfigurerAdapter {

    @Autowired
    public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {

        auth
        .inMemoryAuthentication()
        .withUser("user")
        .password("password")
        .roles("user");

    }

    public void configure(WebSecurity web) {
        web
        .ignoring()
        .antMatchers("/resources/**");
    }

    protected void configure(HttpSecurity http) throws Exception {
        http
         .httpBasic()
         .and()
     .authorizeRequests()
     .antMatchers("/user", "/index.html", "/").permitAll().anyRequest()
     .authenticated();

    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...