我知道这已经回答了很多次,但我很困惑。我的应用程序中已经有一个身份验证机制,我只想使用Spring MVC的授权部分。我正在使用Spring MVC 3和Spring Security 3。
当我在互联网上搜索时,我找到了两个解决方案,第一个是实现AuthenticationProvider接口。 Example1。第二个是实现UserDetails和UserDetailsService,Example2所以我在这里迷失了。
---- ----更新
问题的第二部分是here。以及解决方法的解决方案。
答案 0 :(得分:37)
在大多数情况下,只使用用户名和密码进行身份验证和角色授权,实现自己的UserDetailsService就足够了。
用户名密码验证的流程通常如下:
因此,如果DaoAuthenticationProvider中的验证符合您的需求。然后,您只需要实现自己的UserDetailsService并调整DaoAuthenticationProvider的验证。
使用spring 3.1的UserDetailsService的示例如下:
Spring XML:
<security:authentication-manager>
<security:authentication-provider user-service-ref="myUserDetailsService" />
</security:authentication-manager>
<bean name="myUserDetailsService" class="x.y.MyUserDetailsService" />
UserDetailsService实施:
public MyUserDetailsService implements UserDetailsService {
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
//Retrieve the user from wherever you store it, e.g. a database
MyUserClass user = ...;
if (user == null) {
throw new UsernameNotFoundException("Invalid username/password.");
}
Collection<? extends GrantedAuthority> authorities = AuthorityUtils.createAuthorityList("Role1","role2","role3");
return new User(user.getUsername(), user.getPassword(), authorities);
}
}