spring boot使用自定义表进行身份验证

时间:2016-01-11 12:31:17

标签: java spring spring-security spring-boot

我仍然是来自Grails背景的Spring启动初学者。

已经有很多关于配置的文档。但到目前为止,我仍然没有任何工作,我猜是因为我还没有在春季启动时获得整个配置概念。

我希望我的应用程序使用自己的数据库表进行身份验证。

我目前的表格是:

CREATE TABLE `users` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `username` varchar(512) DEFAULT '',
  `password` varchar(512) DEFAULT NULL,
  `role_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
);

CREATE TABLE `role` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `role_name` varchar(512) DEFAULT NULL,
  PRIMARY KEY (`id`)
);

我尝试使用此类配置我的安全性:

@Configuration
@EnableWebSecurity
@ComponentScan
public class SecurityConfiguration  extends WebSecurityConfigurerAdapter {

        @Autowired
        private DataSource dataSource;

        @Override
        protected void configure(HttpSecurity http) throws Exception {
            http.authorizeRequests().anyRequest().authenticated();
        }

        @Autowired
        public void configAuthentication(AuthenticationManagerBuilder auth) throws Exception {
            auth.jdbcAuthentication()
                    .dataSource(this.dataSource)
                    .authoritiesByUsernameQuery("select u.username,r.role_name from role r,users u where u.username = ? and u.role_id = r.id")
                    .usersByUsernameQuery("SELECT username, password FROM users where username = ?")
                    .passwordEncoder(new BCryptPasswordEncoder());
        }

}

但是当我尝试使用正确的凭据访问页面时,我仍然得到403.

我应该添加什么遗漏?我是否需要覆盖userDetailsService

我无法找到任何明确的文档说明使用列" users.username"作为用户名," users.password"作为密码或覆盖认证查询的方式。

由于

2 个答案:

答案 0 :(得分:5)

UserDetailsServiceJdbcDaoImpl)的标准JDBC实现需要表加载密码,帐户状态(启用或禁用)以及用户的权限列表(角色)< / em>的。该架构如下所示:

create table users(
    username varchar_ignorecase(50) not null primary key,
    password varchar_ignorecase(50) not null,
    enabled boolean not null
);

create table authorities (
    username varchar_ignorecase(50) not null,
    authority varchar_ignorecase(50) not null,
    constraint fk_authorities_users foreign key(username) references users(username)
);
create unique index ix_auth_username on authorities (username,authority);

所以你应该用它来加载用户:

usersByUsernameQuery("SELECT username, password, enabled FROM users where username = ?")

这用于加载一个特定用户的所有权限:

select r.role_name from role r,users u where u.username = ? and u.role_id = r.id"

根据.passwordEncoder(new BCryptPasswordEncoder());,您在db中保存的密码应使用BCrypt进行编码。请参阅spring security doc以获得有关Spring安全性如何工作的更多信息(而不是Spring boot&#39)。

更新:启用HTTP基本安全性:

@Override
protected void configure(HttpSecurity http) throws Exception {
        http
            .httpBasic().and()
            .authorizeRequests().anyRequest().authenticated();
}

要进行身份验证,请添加Authorization标头,如下所示:

Authorization: Basic <username>:<password>

或者您可以将用户和密码包含在URL中:

http://user:passwd@localhost:8080/protected/service

答案 1 :(得分:1)

三种解决方案:

  1. 创建一个实现“UsersDetailsS​​ervice”接口的新类
  2. 您可以提供我们自己的'DaoAuthenticationProvider'而不是默认值来反序列化'UserDetails'实例进行身份验证。
  3. 重新定义'JdbcDaoImpl'的常量字符串'DEF_AUTHORITIES_BY_USERNAME_QUERY','DEF_GROUP_AUTHORITIES_BY_USERNAME_QUERY'和'DEF_USERS_BY_USERNAME_QUERY'(如javadoc所示)