我具有以下Spring Security配置。
@Override
protected void configure(HttpSecurity http) throws Exception
{
http
.authorizeRequests()
.antMatchers("/admin/**").hasRole("ADMIN")
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login")
.permitAll()
.and()
.logout()
.logoutRequestMatcher(new AntPathRequestMatcher("/logout"))
.permitAll();
}
它工作正常,但我想拥有使用REST API的Android客户端应用程序。当我在Android应用程序中使用API时,会将我重定向到Web登录页面。这是理想的行为,但仅在Web应用程序中。
我具有Speditor,Accountant,Driver等角色。除Driver之外,所有其他人都应该能够登录Web应用程序。在android上,我想要单独登录,该登录仅对具有驱动程序角色的用户进行身份验证。
问题是我不知道如何分隔这些身份验证,因此这两个应用程序(Web和Android)可以使用相同的API。你能给我一些建议吗?