在根据LDAP对用户进行身份验证之前,我想检查自己的数据库是否允许该特定用户访问我的应用程序
httpSecurity
.csrf()
.disable()
.authorizeRequests()
.antMatchers ( STATIC_RESOURCES) .permitAll()
.anyRequest()
.authenticated()
.and()
.formLogin()
.loginPage ( "/login" )
.permitAll()
.defaultSuccessUrl ( "/user-info", true )
.failureUrl ( "/login?error=true" )
.and()
.rememberMe()
.key ( "uniqueAndSecret" )
.and()
.logout()
.deleteCookies ( "JSESSIONID" )
.and()
.httpBasic();
}
我希望能够在LoginController中进行一些验证,但是我想在之前进行这些验证。 预先感谢