Spring Security使用数据库登录认证授权
一、搭建项目环境
1、创建 rbac五张表
rbac,即基于角色的权限访问控制(role-based access control),就是用户通过角色与权限进行关联。
在这种模型中,用户与角色之间,角色与权限之间,一般者是多对多的关系。
在 mysql数据库中,创建如下几个表:
drop table if exists sys_user; create table sys_user( id bigint not null auto_increment comment '主键id' , username varchar(60) comment '用户名' , password varchar(255) comment '密码' , status tinyint(1) comment '用户状态,1-开启-0禁用' , password_non_expired tinyint(1) comment '密码是否失效,1-可用,0-失效' , primary key (id) ) comment = '用户表'; drop table if exists sys_role; create table sys_role( id bigint not null auto_increment comment '主键id' , role_name varchar(64) not null comment '角色名' , role_desc varchar(64) not null comment '角色描述' , primary key (id) ) comment = '角色表'; drop table if exists sys_permission; create table sys_permission( id bigint not null auto_increment comment '主键id' , parent_id bigint comment '父id' , permission_name varchar(64) comment '菜单名称' , permission_url varchar(255) comment '菜单地址' , primary key (id) ) comment = '权限表'; drop table if exists sys_user_role; create table sys_user_role( id bigint not null auto_increment comment '主键id' , user_id bigint not null comment '用户id' , role_id bigint comment '角色id' , enabled tinyint(1) default 1 comment '是否有效' , primary key (id) ) comment = '用户角色关联表'; drop table if exists sys_role_permission; create table sys_role_permission( id bigint not null auto_increment comment '主键id' , role_id bigint not null comment '角色id' , permission_id bigint comment '权限id' , primary key (id) ) comment = '角色权限表';
2、创建项目
创建 mavne 项目,springboot + spring security + mybatis + mysql + jsp。
1)配置文件如下
server: port: 9090 # jsp配置 spring: mvc: view: prefix: /pages/ suffix: .jsp datasource: driver-class-name: com.mysql.cj.jdbc.driver url: jdbc:mysql://localhost:3306/security_authority?useunicode=true;characterencoding=utf8;usessl=true;servertimezone=gmt username: root password: 123456 # mybatis配置 mybatis: configuration: map-underscore-to-camel-case: true mapper-locations: classpath:mybatis/mapper/*.xml logging: level: com.charge.learn.springsecurity.springboot.security.jsp.dao: debug
2)启动类
@springbootapplication @mapperscan("com.charge.learn.springsecurity.springboot.security.jsp.dao") public class springsecurityapplication { public static void main(string[] args) { springapplication.run(springsecurityapplication.class, args); } }
二、整合 spring security实现用户认证
1、后端整合
1.1 用户
spring security的用户对象是 userdetail类型
,spring security在认证流程中只认 userdetail用户。
- 通过
userdetailsservice
的 loaduserbyusername方法获取 userdetail用户。 - 认证成功之后,调用的是这个带有三个参数的 usernamepasswordauthenticationtoken构造方法,将 角色信息添加到了
arraylist<grantedauthority>
集合中。 - 在 successfulauthentication 方法中,将认证信息存储到了securitycontext中。
userdetail接口的方法(根据用户业务来处理这几个值)。
- boolean enabled 账户是否可用
- boolean accountnonexpired 账户是否失效
- boolean credentialsnonexpired 账户密码是否失效
- boolean accountnonlocked 账户是否锁定
- collection<? extends grantedauthority> getauthorities() 获取账户的所有权限(用户角色)
注意:
四个布尔类型的参数都为 true时,然后成功,否则,有一个为 false,就会认证失败。
所以,我们可以将我们的用户封装成 userdetail对象。
这里我们让用户对象实现 userdetail接口,那么我们用户就属于 userdetail类型的用户,然后实现接口的方法。
public class sysuser implements userdetails { private long id; private string username; private string password; private boolean status; //用户状态,1-开启-0禁用 private boolean passwordnonexpired; //密码是否失效,1-可用,0-失效 /** * 用户关联的所有角色 */ private list<sysrole> roles = new arraylist<>(); //get、set方法 //标记该字段不做json处理 @jsonignore @override public collection<? extends grantedauthority> getauthorities() { return roles; } @jsonignore @override public boolean isaccountnonexpired() { return true; } @jsonignore @override public boolean isaccountnonlocked() { return true; } @jsonignore @override public boolean iscredentialsnonexpired() { return passwordnonexpired == null ? false : passwordnonexpired; } @jsonignore @override public boolean isenabled() { return status == null ? false : status; } }
1.2 角色
spring security的权限对象是 grantedauthority
类型。通过它的值来实现权限管理的。
所以,我们让角色对象实现grantedauthority接口,那么我们角色就属于 grantedauthority类型,然后实现接口的方法。
上面用户可以直接将 角色添加到 collection<? extends grantedauthority>集合中。
public class sysrole implements grantedauthority { private long id; private string rolename; private string roledesc; //get、set方法 //标记该字段不做json处理 @jsonignore @override public string getauthority() { return rolename; } }
1.3 sysuserservice接受继承userdetailsservice类
spring security在认证流程中通过 userdetailsservice
的 loaduserbyusername方法获取 userdetail用户。
所以,我们让 userservice接口继承 userdetailsservice类
,然后重写 loaduserbyusername方法。
在 loaduserbyusername方法中,获取我们的用户信息( userdetail类型),记得将用户关联的角色也赋值为用户信息。
public interface sysuserservice extends userdetailsservice { void save(sysuser user); }
@service @transactional public class sysuserserviceimpl implements sysuserservice { @autowired private sysusermapper sysusermapper; @autowired private sysrolemapper sysrolemapper; @autowired private bcryptpasswordencoder passwordencoder; @override public void save(sysuser sysuser) { // 将密码加密入库 sysuser.setpassword(passwordencoder.encode(sysuser.getpassword())); sysusermapper.insert(sysuser); } /** * 认证业务 * * @param username * - 用户在浏览器输入的用户名 * @return userdetails - spring security的用户对象,返回 null表示认证失败! * @throws usernamenotfoundexception */ @override public userdetails loaduserbyusername(string username) throws usernamenotfoundexception { /** * 用户信息和角色信息可以一步关联查询到位得到sysuser,我这里分开查询 */ // 1.查询用户 sysuser sysuser = sysusermapper.getbyusername(username); if (sysuser == null) { return null; } // 2.获取用户关联的所有角色 list<sysrole> sysroles = sysrolemapper.listallbyuserid(sysuser.getid()); sysuser.setroles(sysroles); system.out.println("====> sysuser=" + sysuser.tostring()); return sysuser; } }
mapper.xml中的几个方法
<select id="getbyusername" resultmap="baseresultmap"> select id, username, password, status, password_non_expired from sys_user where username = #{username} </select> <select id="listallbyuserid" resultmap="baseresultmap"> select r.id, r.role_name role_name, r.role_desc role_desc from sys_role r, sys_user_role ur where r.id = ur.role_id and ur.user_id = #{userid} </select>
1.4 创建 springsecurity配置类
自定义一个配置类,添加@enablewebsecurity注解
,并继承websecurityconfigureradapter类
。然后就拥有了 springsecutiry的所有默认配置。我们也可以修改配置。
@configuration @enablewebsecurity public class websecurityconfig extends websecurityconfigureradapter { @autowired private sysuserservice userservice; // 加密对象注入ioc容器 @bean public bcryptpasswordencoder passwordencoder(){ return new bcryptpasswordencoder(); } // 1.指定认证对象的来源(内存或者数据库),指定加密方式 @override public void configure(authenticationmanagerbuilder auth) throws exception { auth.userdetailsservice(userservice).passwordencoder(passwordencoder()); } //2. springsecurity配置相关信息 @override public void configure(httpsecurity http) throws exception { // 释放静态资源,指定拦截规则,指定自定义的认证和退出页面,csrf配置等 http.authorizerequests() // 指定拦截规则 .antmatchers("/login.jsp", "failer.jsp", "/css/**", "/img/**", "/plugins/**").permitall() //释放这些资源,不拦截 .antmatchers("/**").hasanyrole("user", "admin") //所有资源都需要这些角色中的一个 .anyrequest().authenticated() //其他请求,必须认证通过之后才能访问 .and() // 表示新的一个配置开始 // 指定自定义的认证页面 .formlogin() .loginpage("/login.jsp") .loginprocessingurl("/login") .successforwardurl("/index.jsp") .failureforwardurl("/failer.jsp") .permitall() // 释放这些资源,不拦截登录 .and() // 指定自定义的退出页面 .logout() .logoutsuccessurl("/logout") .invalidatehttpsession(true) // 清楚session .logoutsuccessurl("/login.jsp") .permitall() //.and() // 禁用csrf配置,默认开启的(一般不写,页面要加csrf),这里我们测试下 // .and() // .csrf() // .disable() ; }
主要配置信息如下:
- 指定认证对象 sysuserservice (userdetailsservice类型)
- 指定了用户密码使用的加密对象
- springsecurity配置相关信息,比如:指定拦截规则,指定自定义的认证页面,csrf等。
2、前端整合
在 spring security 中,如果我们不做任何配置,默认的登录页面和登录接口的地址都是 /login,即默认会存在如下两个请求:
- get http://localhost:8080/login
- post http://localhost:8080/login
如果是 get 请求表示你想访问登录页面,如果是 post 请求,表示你想提交登录数据。默认的表单字段为 username和password。
springsecurity 默认 是开启 csrf防护机制。
所以,在自定义的表单上添加上 _csrf隐藏input(必须要写在form表单里面)。
引入 security标签库 <%@taglib uri="http://www.springframework.org/security/tags" prefix="security"%> <security:csrfinput/>
启动项目,登录认证访问ok.
三、整合 spring security实现用户授权
认证过程获取用户信息时,我们已经把用户关联的角色信息设置到了 userdetails中,所以,我们只需要分配 资源访问的角色就可以了。
1、后端
1.1 开启 spring security权限控制
spring security可以通过注解的方式来控制类或者方法的访问权限。支持开启权限控制的注解类型如下:
- jsr250-annotations:表示支持 jsr250-api的注解
- pre-post-annotations:表示支持 spring表达式注解
- secured-annotations:这才是 spring security提供的注解
在实际开发中,用一类即可,三个都开启也没关系。
在 springsecurity配置类上 添加 @enableglobalmethodsecurity注解
,表示开启 spring security权限控制,这里我们三类都开启了。
@configuration @enablewebsecurity @enableglobalmethodsecurity(securedenabled=true, prepostenabled = true, jsr250enabled = true) public class websecurityconfig extends websecurityconfigureradapter { ...
@configuration @enablewebsecurity @enableglobalmethodsecurity(securedenabled=true, prepostenabled = true, jsr250enabled = true) public class websecurityconfig extends websecurityconfigureradapter { ...
1.2 在角色对应类或者方法上添加权限注解
1.2.1 使用 spring security注解
- @secured({“role_admin”,“role_product”})
@controller @requestmapping("/user") @secured("role_admin") //表示当前类中所有方法需要 role_admin才能访问 public class usercontroller { @autowired private userservice userservice; @requestmapping("/findall") public string findall(model model){ list<sysuser> list = userservice.findall(); model.addattribute("list", list); return "user-list"; } 。。。 }
1.2.2 使用 spring表达式注解
- @preauthorize(“hasanyrole(‘role_admin’,‘role_product’)”)
@controller @requestmapping("/product") public class productcontroller { @requestmapping("/findall") //表示当前类中findall方法需要 role_admin或者 role_product才能访问 @preauthorize("hasanyrole('role_admin','role_product')") public string findall(){ return "product-list"; } }
1.2.3 使用 jsr-250注解
- @rolesallowed({“role_admin”,“role_user”})
@controller @requestmapping("/order") @rolesallowed({"role_admin","role_user"}) //表示当前类中所有方法都需要role_admin或者role_user才能访问 public class ordercontroller { @requestmapping("/findall") public string findall(){ return "order-list"; } }
2、前端
在jsp业页面中,对每个菜单资源通过 springsecurity标签库指定访问所需的角色。
<%@taglib uri="http://www.springframework.org/security/tags" prefix="security" %> <!-- 指定访问所需角色 --> <security:authorize access="hasanyrole('role_admin', '等等')">
启动项目,通过不同的用户登录,授权访问ok.
到此这篇关于spring security使用数据库登录认证授权的文章就介绍到这了,更多相关spring security数据库登录认证授权内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 2020-07-11
推荐阅读
-
使用Spring Security OAuth2实现单点登录
-
Spring Security授权流程(项目中使用)
-
Spring Security授权流程(项目中使用)
-
shiro学习三(spring boot整合shiro读取数据库数据实现用户登录,权限认证)
-
Springboot+Spring Security实现前后端分离登录认证及权限控制的示例代码
-
Spring Security——认证授权的概念、授权的数据模型、RBAC实现授权
-
Spring Security 自定义短信登录认证的实现
-
SpringBoot + Spring Security 学习笔记(一)自定义基本使用及个性化登录配置
-
详解Spring Security的formLogin登录认证模式
-
Java Spring Security认证与授权及注销和权限控制篇综合解析