我正在制作企业 Web 应用程序,我已经构建了自定义登录页面,但不知怎的,只有 Spring Security 登录页面出现,而不是我的自定义登录页面。下面是我的安全配置类。
请帮忙。
@Configuration
@EnableWebSecurity
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Autowired
public void configureGlobalSecurity(AuthenticationManagerBuilder auth)
throws Exception {
auth.inMemoryAuthentication().withUser("test").password("pwd123")
.roles("USER", "ADMIN");
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/login").permitAll()
.antMatchers("/", "/*todo*/**").access("hasRole('USER')").and()
.formLogin();
http.csrf().disable();
}
qq_遁去的一_1
幕布斯7119047
侃侃无极
相关分类