快速业务通道

Spring源代码解析(九):Spring Acegi框架鉴权的实现 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
   //最后返回Authentication记录了验证结果供以后的授权使用      return createSuccessAuthentication(principalToReturn, authentication, user);    }    //这是是调用UserDetailService去加载服务器端用户信息的地方,从什么地方加 载要看设置,这里我们假设由JdbcDaoImp来从数据中进行加载    protected final UserDetails retrieveUser(String username, UsernamePasswordAuthenticationToken authentication)      throws AuthenticationException {      UserDetails loadedUser;      //这里调用UserDetailService去从数据库中加载用户验证信息,同时返回从 数据库中返回的信息,这些信息放到了UserDetails对象中去了      try {        loadedUser = this.getUserDetailsService().loadUserByUsername (username);      } catch (DataAccessException repositoryProblem) {        throw new AuthenticationServiceException (repositoryProblem.getMessage(), repositoryProblem);      }      if (loadedUser == null) {        throw new AuthenticationServiceException(          "UserDetailsService returned null, which is an interface contract violation");      }      return loadedUser;    }

Spring源代码解析(九):Spring Acegi框架鉴权的实现(4)

时间:2011-03-29 javaeye jiwenke

下面我们重点分析一下JdbcDaoImp这个类来看看具体是怎样从数据库中得到用户信息 的:

Java代码

public class JdbcDaoImpl extends JdbcDaoSupport implements UserDetailsService {    //~ Static fields/initializers ============================================================================== =======    //这里是预定义好的对查询语句,对应于默认的数据库表结构,也可以自己定义 查询语句对应特定的用户数据库验证表的设计    public static final String DEF_USERS_BY_USERNAME_QUERY =        "SELECT username,password,enabled FROM users WHERE username = ?";    public static final String DEF_AUTHORITIES_BY_USERNAME_QUERY =        "SELECT username,authority FROM authorities WHERE username = ?";    //~ Instance fields ============================================================================== ==================    //这里使用Spring JDBC来进行数据库操作    protected MappingSqlQuery authoritiesByUsernameMapping;    protected MappingSqlQuery usersByUsernameMapping;    private String authoritiesByUsernameQuery;    private String rolePrefix = "";    private String usersByUsernameQuery;    private boolean usernameBasedPrimaryKey = true;    //~ Constructors ============================================================================== =====================    //在初始化函数中把查询语句设置为预定义的SQL语句    public JdbcDaoImpl() {      usersByUsernameQuery = DEF_USERS_BY_USERNAME_QUERY;      authoritiesByUsernameQuery = DEF_AUTHORITIES_BY_USERNAME_QUERY;    }    //~ Methods ============================================================================== ==========================    protected void addCustomAuthorities(String username, List authorities) {}    public String getAuthoritiesByUs

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号