Shiro简介及SpringBoot集成Shiro(狂神说视频简易版)

在这里插入图片描述

说明:该文章为《狂神说SpringBoot集成Shiro》视频的自己总结的文章
b站视频学习连接

一、Shiro简介

1.1什么是Shiro

Apache Shiro 是一个Java 的安全(权限)框架。
Shiro 可以非常容易的开发出足够好的应用,其不仅可以用在JavaSE环境,也可以用在JavaEE环
境。
Shiro可以完成,认证,授权,加密,会话管理,Web集成,缓存等。
下载地址:http://shiro.apac he.org/

1.2有哪些功能

在这里插入图片描述
在这里插入图片描述

1.3Shiro架构(外部)

在这里插入图片描述
在这里插入图片描述

1.4Shiro架构(内部)

在这里插入图片描述
在这里插入图片描述

二、QuickStart.java

了解下列方法的用处

在这里插入图片描述

三、SpringBoot集成Shiro

页面效果

在这里插入图片描述

项目结构

在这里插入图片描述

第1步:pom导入shiro和thymeleaf依赖

<!--Shiro 和 spring整合的依赖-->
<dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-spring</artifactId>
    <version>1.4.1</version>
</dependency>

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
    <version>2.6.7</version>
</dependency>

第2步:创建页面

login.html

login.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>登录页面</title>
</head>
<body>
<p style="color: red" th:text="${msg}"></p>
<!--login是controller使用shiro做登录验证的方法-->
<form th:action="@{/shiro/login}">
    <p>
        用户名:<input type="text" name="username">
    </p>

    <p>
        密码:<input type="text" name="password">
    </p>
    <p><input type="submit"></p>
</form>
</body>
</html>

index.html

index.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>首页</h1>
<p th:text="${msg1}"></p>

<!--/user/add是controller的一个路径-->
<a th:href="@{/shiro/user/add}">add</a>
<a th:href="@{/shiro/user/update}">update</a>
</body>
</html>

add.html

add.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>add</title>
</head>
<body>
<h1>add</h1>
</body>
</html>

update.html

update.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>update</title>
</head>
<body>
<h1>update</h1>
</body>
</html>

第3步:创建配置项

ShiroConfig

package com.example.demo.config;

import com.example.demo.bean.UserRealm;
import org.apache.shiro.spring.web.ShiroFilterFactoryBean;
import org.apache.shiro.web.mgt.DefaultWebSecurityManager;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.LinkedHashMap;
import java.util.Map;

//声明为配置类
@Configuration
public class ShiroConfig {


    //创建过滤器 ShiroFilterFactoryBean 3
    @Bean
    public ShiroFilterFactoryBean getShiroFilterFactoryBean(@Qualifier("securityManager") DefaultWebSecurityManager securityManager){
        ShiroFilterFactoryBean shiroFilterFactoryBean=new ShiroFilterFactoryBean();
        //设置安全管理器
        shiroFilterFactoryBean.setSecurityManager(securityManager);
        /*
        添加Shiro内置过滤器,常用的有如下过滤器:
        anon: 无需认证就可以访问
        authc: 必须认证才可以访问
        user: 如果使用了记住我功能就可以直接访问
        perms:	拥有某个资源权限才可以访问
        role: 拥有某个角色权限才可以访问
        */
        Map<String,String> filterMap=new LinkedHashMap<String, String>();
        //设置过滤器,还没登录前要想访问controller的add和update必须通过登录认证才允许访问
        filterMap.put("/shiro/user/add","authc");  //这里user/*可以通配符的
        filterMap.put("/shiro/user/update","authc");
        filterMap.put("/shiro/queryList","authc");
        shiroFilterFactoryBean.setFilterChainDefinitionMap(filterMap);
        //修改到要跳转的login页面(shrio没security会帮你自动生成一个登录的,得自己写);
        shiroFilterFactoryBean.setLoginUrl("/shiro/toLogin"); //toLogin是controller的一个跳到登录页面的方法

        return  shiroFilterFactoryBean;
    }

    //创建安全管理器 DefaultWebSecurityManager 2
    @Bean(name = "securityManager")
    public DefaultWebSecurityManager getDefaultWebSecurityManager(@Qualifier("userRealm") UserRealm userRealm){
        DefaultWebSecurityManager securityManager=new DefaultWebSecurityManager();
        //关联Realm
        securityManager.setRealm(userRealm);
        return securityManager;
    }

    //创建 realm 对象 1
    @Bean
    public UserRealm userRealm(){
        return new UserRealm();
    }
}

Realm

package com.example.demo.bean;

import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.AuthenticationInfo;
import org.apache.shiro.authc.AuthenticationToken;
import org.apache.shiro.authc.SimpleAuthenticationInfo;
import org.apache.shiro.authc.UsernamePasswordToken;
import org.apache.shiro.authz.AuthorizationInfo;
import org.apache.shiro.authz.SimpleAuthorizationInfo;
import org.apache.shiro.realm.AuthorizingRealm;
import org.apache.shiro.subject.PrincipalCollection;

import java.util.HashSet;
import java.util.Set;

//自定义Realm 必须要的 给ShrioConfig第三步用的
public class UserRealm extends AuthorizingRealm{

    //执行授权逻辑
    @Override
    protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principalCollection) {
        System.out.println("执行了=>授权逻辑PrincipalCollection");

        //从数据库查用户判断是否为admin账户,设置isAdmin属性为【true/false】
        boolean isAdmin = true;
        SimpleAuthorizationInfo info = new SimpleAuthorizationInfo();
        // 角色列表
        Set roles = new HashSet<String>();
        // 功能列表
        Set<String> menus = new HashSet<String>();
        //判断管理员拥有所有权限
        if(isAdmin) {
            info.addRole("admin");
            info.addStringPermission("*:*:*");
        } else {
           //非管理员添加权限
           //从数据库查询角色和权限,赋值给roles和menus
            info.setRoles(roles);
            info.setStringPermissions(menus);
        }
        return info;
    }

    //执行认证逻辑
    @Override
    protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {
        System.out.println("执行了=>认证逻辑AuthenticationToken");
        //假设数据库的用户名和密码
        String name="root";
        String password="root";

        //1.判断用户名
        //把token转为我们认识的,也是从controller那个token来的
        UsernamePasswordToken userToken = (UsernamePasswordToken) token;
        if (!userToken.getUsername().equals(name)){
            //用户名不存在
            return null; //shiro底层就会抛出 UnknownAccountException
        }

        //2. 验证密码,我们可以使用一个AuthenticationInfo实现类 SimpleAuthenticationInfo
        //	shiro会自动帮我们验证!重点是第二个参数就是要验证的密码!
        //第一个参数是传给上面的授权方法获得当前用户的,现在暂时设置为空先
        return new SimpleAuthenticationInfo("",password,"");
    }
}

ShiroController

package com.example.demo.controller;

import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.IncorrectCredentialsException;
import org.apache.shiro.authc.UnknownAccountException;
import org.apache.shiro.authc.UsernamePasswordToken;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.apache.shiro.subject.Subject;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.ArrayList;
import java.util.List;

@Controller
@RequestMapping("/shiro")
public class ShiroController {
    //    加/代表默认跳到这
    @RequestMapping({"/","/index"})
    public String toIndex(Model model){
        model.addAttribute("msg1","hello,Shiro");
        return "shiroUser/index";
    }
    @RequestMapping("/user/add")
    public String toAdd(){
        return "shiroUser/add";
    }
    @RequestMapping("/user/update")
    public String toUpdate(){
        return "shiroUser/update";
    }

    //跳到登录登录页面的方法
    @RequestMapping("/toLogin")
    public String toLogin(){
        return "shiroUser/login";
    }
    //登录操作
    @RequestMapping("/login")
    public String login(String username, String password, Model model){
        //使用shiro,编写认证操作
        //1. 获取Subject
        Subject subject = SecurityUtils.getSubject();
        //2. 封装用户的数据,token是根据用户名和密码生成的
        UsernamePasswordToken token = new UsernamePasswordToken(username, password);
        //token.setRememberMe(true); //记住我

        //

        //3. 执行登录的方法,只要没有异常就代表登录成功!
        try {
            subject.login(token); //执行登录,shiro帮我们弄的,很麻烦的,会跳到UserRealm的认证方法认证的
            //登录成功!返回首页
            return "shiroUser/index";
        }catch (UnknownAccountException e){
            //用户名不存在
            model.addAttribute("msg","用户名不存在");
            return "shiroUser/login";
        }catch (IncorrectCredentialsException e) {
            //密码错误
            model.addAttribute("msg","密码错误");
            return "shiroUser/login";
        }
    }

    //假的批量查询
    @RequiresPermissions("sysconfig:edit:view")
    @ResponseBody
    @GetMapping("/queryList")
    public List queryList(){
        List list = new ArrayList();
        //查询数据库封装list
        return list;
    }
}

四、注意点讲解

注意点1:讲解执行流程
首先访问默认路径http://localhost:8888/shiro/ =》 走进ShiroConfig的过滤器getShiroFilterFactoryBean方法 =》如果未登录就对进入登录页面;如果已登录就直接跳转add或者update页面。

注意点2:

问题:UserRealm的doGetAuthorizationInfo授权方法何时执行?

答案:当执行下方方法时就会进入授权方法中

  1. subject.hasRole(“admin”) 或subject.isPermitted(“admin”):自己去调用这个是否有什么角色或者是否有什么权限的时候;

  2. @RequiresRoles(“admin”) :在方法上加注解的时候;

  3. [@shiro.hasPermission name =“admin”] [/@shiro.hasPermission]:在页面上加shiro标签的时候,即进这个页面的时候扫描到有这个标签的时候。

问题:UserRealm的doGetAuthenticationInfo认证方法何时执行?

答案:当执行登录方法中的subject.login(token);这段代码时,shiro就会自动帮我们跳转到UserRealm的认证方法认证的。

注意点3:

问题:ShiroConfig干啥用的?

答案:

  • 第1步:创建realm对象
  • 第2步:创建安全管理器 DefaultWebSecurityManager
  • 第3步:创建过滤器 ShiroFilterFactoryBea

注意点4:

问题:UserRealm干啥用的?

答案:用来定义授权逻辑和认证逻辑,其中授权逻辑就是定义哪些角色拥有哪些访问权限,认证逻辑用来校验用户输入的信息是否正确,比如用户名是否正确、密码是否正确、用户名长度或密码输入格式是否正确等等。

授权方法doGetAuthorizationInfo使用SimpleAuthorizationInfo对象设置角色和权限
认证方法doGetAuthenticationInfo使用SimpleAuthenticationInfo对象设置验证密码

注意点5:

注解@RequiresPermissions(“sysconfig:edit:view”)干啥用的?

答案:只有登录用户权限包含"sysconfig:edit:view"的时候才能调通@RequiresPermissions注解指定的方法接口,否则压根调不通接口。

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

刘大猫.

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值