Демонстрация входа в 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();
}
}