SpringBoot整合Shiro实现登录认证的方法
安全无处不在,趁着放假读了一下 shiro 文档,并记录一下 shiro 整合 spring boot 在数据库中根据角色控制访问权限
简介
apache shiro是一个功能强大、灵活的,开源的安全框架。它可以干净利落地处理身份验证、授权、企业会话管理和加密。
上图是 shiro 的基本架构
authentication(认证)
有时被称为“登录”,用来证明用户是用户他们自己本人
authorization(授权)
访问控制的过程,即确定“谁”访问“什么”
session management(会话管理)
管理用户特定的会话,在 shiro 里面可以发现所有的用户的会话信息都会由 shiro 来进行控制
cryptography(加密)
在对数据源使用加密算法加密的同时,保证易于使用
start
环境
spring boot 1.5.9 mysql 5.7 maven 3.5.2 spring data jpa lombok
添加依赖
这里只给出主要的 shiro 依赖
<dependency> <groupid>org.apache.shiro</groupid> <artifactid>shiro-spring-boot-starter</artifactid> <version>1.4.0-rc2</version> </dependency>
配置
我们暂时只需要用户表、角色表,在 spring boot 中修改配置文件将自动为我们创建数据库表
server: port: 8888 spring: datasource: driver-class-name: com.mysql.jdbc.driver username: root password: root url: jdbc:mysql://localhost:3306/shiro?characterencoding=utf-8&usessl=false jpa: generate-ddl: true hibernate: ddl-auto: update show-sql: true
实体
role.java
@data @entity public class role { @id @generatedvalue private integer id; private long userid; private string role; }
user.java
@data @entity public class user { @id @generatedvalue private long id; private string username; private string password; }
realm
首先建立 realm 类,继承自 authorizingrealm,自定义我们自己的授权和认证的方法。realm 是可以访问特定于应用程序的安全性数据(如用户,角色和权限)的组件。
realm.java
public class realm extends authorizingrealm { @autowired private userservice userservice; //授权 @override protected authorizationinfo dogetauthorizationinfo(principalcollection principalcollection) { //从凭证中获得用户名 string username = (string) securityutils.getsubject().getprincipal(); //根据用户名查询用户对象 user user = userservice.getuserbyusername(username); //查询用户拥有的角色 list<role> list = roleservice.findbyuserid(user.getid()); simpleauthorizationinfo info = new simpleauthorizationinfo(); for (role role : list) { //赋予用户角色 info.addstringpermission(role.getrole()); } return info; } //认证 @override protected authenticationinfo dogetauthenticationinfo(authenticationtoken authenticationtoken) throws authenticationexception { //获得当前用户的用户名 string username = (string) authenticationtoken.getprincipal(); //从数据库中根据用户名查找用户 user user = userservice.getuserbyusername(username); if (userservice.getuserbyusername(username) == null) { throw new unknownaccountexception( "没有在本系统中找到对应的用户信息。"); } simpleauthenticationinfo info = new simpleauthenticationinfo(user.getusername(), user.getpassword(),getname()); return info; } }
shiro 配置类
shiroconfig.java
@configuration public class shiroconfig { @bean public shirofilterfactorybean shirofilterfactorybean(securitymanager securitymanager) { shirofilterfactorybean shirofilterfactorybean = new shirofilterfactorybean(); shirofilterfactorybean.setsecuritymanager(securitymanager); map<string, string> filterchaindefinitionmap = new linkedhashmap<string, string>(); //以下是过滤链,按顺序过滤,所以/**需要放最后 //开放的静态资源 filterchaindefinitionmap.put("/favicon.ico", "anon");//网站图标 filterchaindefinitionmap.put("/**", "authc"); shirofilterfactorybean.setfilterchaindefinitionmap(filterchaindefinitionmap); return shirofilterfactorybean; } @bean public defaultwebsecuritymanager securitymanager() { defaultwebsecuritymanager defaultwebsecuritymanager = new defaultwebsecuritymanager(myrealm()); return defaultwebsecuritymanager; } @bean public myrealm myrealm() { myrealm myrealm = new myrealm(); return myrealm; } }
控制器
usercontroller.java
@controller public class usercontroller { @autowired private userservice userservice; @getmapping("/") public string index() { return "index"; } @getmapping("/login") public string tologin() { return "login"; } @getmapping("/admin") public string admin() { return "admin"; } @postmapping("/login") public string dologin(string username, string password) { usernamepasswordtoken token = new usernamepasswordtoken(username, password); subject subject = securityutils.getsubject(); try { subject.login(token); } catch (exception e) { e.printstacktrace(); } return "redirect:admin"; } @getmapping("/home") public string home() { subject subject = securityutils.getsubject(); try { subject.checkpermission("admin"); } catch (unauthorizedexception exception) { system.out.println("没有足够的权限"); } return "home"; } @getmapping("/logout") public string logout() { return "index"; } }
service
userservice.java
@service public class userservice { @autowired private userdao userdao; public user getuserbyusername(string username) { return userdao.findbyusername(username); } @requiresroles("admin") public void send() { system.out.println("我现在拥有角色admin,可以执行本条语句"); } }
展示层
admin.html
<!doctype html> <html xmlns:th="http://www.thymeleaf.org"> <html lang="en"/> <head> <meta charset="utf-8"/> <title>title</title> </head> <body> <form action="/login" method="post"> <input type="text" name="username" /> <input type="password" name="password" /> <input type="submit" value="登录" /> </form> </body> </html>
home.html
<!doctype html> <html xmlns:th="http://www.thymeleaf.org"> <html lang="en"/> <head> <meta charset="utf-8"/> <title>title</title> </head> <body> home </body> </html>
index.html
<!doctype html> <html xmlns:th="http://www.thymeleaf.org"> <html lang="en"/> <head> <meta charset="utf-8"/> <title>title</title> </head> <body> index <a href="/login" rel="external nofollow" >请登录</a> </body> </html>
login.html
<!doctype html> <html xmlns:th="http://www.thymeleaf.org"> <html lang="en"/> <head> <meta charset="utf-8"/> <title>title</title> </head> <body> <form action="/login" method="post"> <input type="text" name="username" /> <input type="password" name="password" /> <input type="submit" value="登录" /> </form> </body> </html>
总结
这个小案例实现了根据角色来控制用户访问,其中最重要的就是 realm,它充当了shiro与应用安全数据间的“桥梁”或者“连接器”
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
SpringBoot整合Elasticsearch7.2.0的实现方法
-
spring boot整合Shiro实现单点登录的示例代码
-
spring boot整合redis实现shiro的分布式session共享的方法
-
SpringBoot 并发登录人数控制的实现方法
-
SpringBoot使用JWT实现登录验证的方法示例
-
SpringBoot整合Shiro实现登录认证的方法
-
SpringBoot 整合 Shiro 密码登录与邮件验证码登录功能(多 Realm 认证)
-
如何利用IDEA搭建SpringBoot项目整合mybatis实现简单的登录功能
-
SpringBoot整合Elasticsearch7.2.0的实现方法
-
Nginx配置Basic Auth登录认证的实现方法