91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java?springboot整合Shiro框架的方法是什么

發布時間:2022-01-12 20:21:49 來源:億速云 閱讀:171 作者:iii 欄目:開發技術

本篇內容主要講解“Java springboot整合Shiro框架的方法是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Java springboot整合Shiro框架的方法是什么”吧!

Shiro介紹

Shiro是一款安全框架,主要的三個類Subject、SecurityManager、Realm

  • Subject:表示當前用戶

  • SecurityManager:安全管理器,即所有與安全有關的操作都會與SecurityManager交互;且其管理著所有Subject;可以看出它是Shiro的核心,它負責與Shiro的其他組件進行交互,它相當于SpringMVC中DispatcherServlet的角色

  • Realm:Shiro從Realm 獲取安全數據(如用戶、角色、權限)

Shiro框架結構圖

Java?springboot整合Shiro框架的方法是什么

Springboot整合Shiro

建項目是勾選spring web,導入依賴

<!--        thymeleaf-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
<!--        shiro-->
        <dependency>
            <groupId>org.apache.shiro</groupId>
            <artifactId>shiro-spring</artifactId>
            <version>1.7.1</version>
        </dependency>
<!--        lombok-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
            <version>1.18.2</version>
        </dependency>
<!--        mysql-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
<!--        druid-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.0.9</version>
        </dependency>
<!--        mybatis-->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.1</version>
        </dependency>
<!--        log4j-->
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
        </dependency>
<!--        thymeleaf、shiro整合包-->
        <dependency>
            <groupId>com.github.theborakompanioni</groupId>
            <artifactId>thymeleaf-extras-shiro</artifactId>
            <version>2.0.0</version>
        </dependency>

編寫頁面及其控制層

Java?springboot整合Shiro框架的方法是什么

 轉發的設置,全部編寫在MVCConfig中的前端控制器中

@Configurationpublic class MyMvcConfig implements WebMvcConfigurer {    @Override    public void addViewControllers(ViewControllerRegistry registry) {        registry.addViewController("/").setViewName("index");        registry.addViewController("/login.html").setViewName("login");        registry.addViewController("/user/add").setViewName("user/add");        registry.addViewController("/user/update").setViewName("user/update");        registry.addViewController("/loginout").setViewName("login");    }}

連接數據庫

編寫application.yml

spring:
  datasource:
    username: ***
    password: ***
    url: jdbc:mysql://localhost:3306/db_2?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
    driver-class-name: com.mysql.cj.jdbc.Driver
    type: com.alibaba.druid.pool.DruidDataSource
   
    initialSize: 5
    minIdle: 5
    maxActive: 20
    maxWait: 60000
    timeBetweenEvictionRunsMillis: 60000
    minEvictableIdleTimeMillis: 300000
    validationQuery: SELECT 1 FROM DUAL
    testWhileIdle: true
    testOnBorrow: false
    testOnReturn: false
    poolPreparedStatements: true
    filters: stat,wall,log4j
    maxPoolPreparedStatementPerConnectionSize: 20
    useGlobalDataSourceStat: true
    connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=500
mybatis:
  type-aliases-package: com.example.demo.pojo

編寫 pojo、dao、service三層,dao層可以直接使Mybatis的注解。

需要的方法就是findByName(String username),通過表單傳入的username值進行查詢。

編寫UserRealm 需要繼承AuthorizingRealm

public class UserRealm extends AuthorizingRealm {
    @Autowired
    private IuserService iuserService;
//    授權
    @Override
    protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principalCollection) {
        System.out.println("===>授權");
        SimpleAuthorizationInfo Info = new SimpleAuthorizationInfo();
        //        獲取登錄對象
        Subject subject = SecurityUtils.getSubject();
        user principal = (user) subject.getPrincipal();//拿到user
        Info.addStringPermission(principal.getPerms());
        return Info;
    }
//    認證
 
    @Override
    protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken authenticationToken) throws AuthenticationException {
        System.out.println("==>認證");
        UsernamePasswordToken authenticationToken1 = (UsernamePasswordToken) authenticationToken;
        user byName = iuserService.findByName(authenticationToken1.getUsername());
        if(byName==null){
            return null;//拋出用戶名錯誤的異常
        }
        //密碼認證shiro自己完成  將user對象 傳遞給上面的方法進行授權
        return new SimpleAuthenticationInfo(byName,byName.getPassword(),"");
    }
}

代碼的分析:

認證部分:

將表單提交的數據封裝成一個對象,通過username從數據庫中查詢返回一個對象,進行比對

最后將這個查詢的對象傳遞給授權方法。

授權部分:

獲取到用戶對象,給用戶對象進行相應的授權。(傳遞的user對象中就有權限設置)

編寫ShiroConfig

@Configuration
public class ShiroConfig {
    @Bean   //創建對象
    public UserRealm userRealm(){
        return new UserRealm();
    }
    @Bean   //接管對象  @Bean 默認使用方法名稱
    public DefaultWebSecurityManager securityManager(@Qualifier("userRealm") Realm realm){
        DefaultWebSecurityManager defaultWebSecurityManager = new DefaultWebSecurityManager();
        defaultWebSecurityManager.setRealm(realm);
        return defaultWebSecurityManager;
    }
    @Bean  //交給前端處理
    public ShiroFilterFactoryBean shiroFilterFactoryBean(@Qualifier("securityManager") DefaultWebSecurityManager defaultWebSecurityManager){
        ShiroFilterFactoryBean shiroFilterFactoryBean = new ShiroFilterFactoryBean();
        shiroFilterFactoryBean.setSecurityManager(defaultWebSecurityManager);
 
        HashMap<String, String> hashMap = new HashMap<>();
//        該路徑 必須通過認證 才能進行訪問
        hashMap.put("/user/*","authc");
//        進行授權
        hashMap.put("/user/add","perms[add]");
        hashMap.put("/user/update","perms[update]");
//        注銷
        hashMap.put("/logout","logout");
        shiroFilterFactoryBean.setFilterChainDefinitionMap(hashMap);
//        設置登錄頁面的路徑
        shiroFilterFactoryBean.setLoginUrl("/login.html");
//        設置授權頁面
        shiroFilterFactoryBean.setUnauthorizedUrl("/noLogin");
        return shiroFilterFactoryBean;
    }
 
//    完成整合
    @Bean
    public ShiroDialect getShiroDialect(){
        return new ShiroDialect();
    }
}

代碼分析

在這個配置類中,配置的方法就是ioc注入。

ShiroFilterFactoryBean中可以配置

  • 資源路徑對應的權限

  • 登陸頁面

  • 權限不足 無法訪問的頁面路徑

  • 注銷

補充: 攔截的屬性

  • anon: 無需認證就可以訪問

  • authc: 必須認證了才能訪問

  • user: 必須擁有記住我功能才能用

  • perms: 擁有對某個資源的權限才能訪問

  • role: 擁有某個角色權限

編寫控制層代碼

@Controller
public class logincontroller {
//    執行流程 前端表單-》控制層代碼-》config
    @PostMapping("/login")
    public String login(String username, String password, Model model){
//        獲取一個用戶
        Subject subject = SecurityUtils.getSubject();
//        封裝用戶登陸數據
        UsernamePasswordToken usernamePasswordToken = new UsernamePasswordToken(username, password);
//        執行登錄方法,如果失敗就會拋出異常
        try{
            subject.login(usernamePasswordToken);
            return "index";
        }catch (UnknownAccountException e){
            model.addAttribute("msg","用戶名錯誤");
            return "login";
        }catch (IncorrectCredentialsException e){
            model.addAttribute("msg","密碼錯誤");
            return "login";
        }
    }
    @GetMapping("/noLogin")
    @ResponseBody
    public String nologin(){return "未經授權 無法訪問";}
 
}

代碼分析:

login方法:獲取從表單傳遞的數據,封裝從UsernamePasswordToken對象,調用login方法進行登錄操作

Shiro整合Thymeleaf

在ShiroConfig需要整合ShiroDialect

//    完成整合
    @Bean
    public ShiroDialect getShiroDialect(){
        return new ShiroDialect();
    }

約束

xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"

使用方法

  • shiro:notAuthenticated:沒有進行登錄 顯示

  • shiro:authenticated:已經登陸 顯示

  • shiro:hasPermission="A"  用戶存在A的權限則顯示

示例代碼:

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org"
      xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h2>首頁</h2>
<div shiro:notAuthenticated>
    <a th:href="@{/login.html}">登錄</a>
</div>
<div shiro:authenticated>
    <a th:href="@{/logout}">注銷</a>
</div>
<div shiro:hasPermission="add">
    <a th:href="@{/user/add}">ADD</a>
</div>
<div shiro:hasPermission="update">
    <a th:href="@{/user/update}">UPDATE</a>
</div>
 
</body>
</html>

總結

登錄的流程:login表單-》loginController-》ShiroConfig-》UserRealm

效果:

點擊登錄,控制臺會顯示

Java?springboot整合Shiro框架的方法是什么

 進入add/update的頁面,也會打印"===>授權",這個也證明了登錄的執行流程

到此,相信大家對“Java springboot整合Shiro框架的方法是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

天气| 望谟县| 革吉县| 济南市| 武冈市| 弋阳县| 扎兰屯市| 沿河| 富民县| 嘉祥县| 荥经县| 海城市| 康马县| 喀喇| 泽州县| 沛县| 合肥市| 浏阳市| 黔江区| 娱乐| 旬阳县| 长泰县| 邵阳县| 阳西县| 洛南县| 天峻县| 康乐县| 福泉市| 资阳市| 利川市| 喀喇沁旗| 深水埗区| 夏邑县| 彰武县| 普安县| 汶上县| 甘肃省| 乐平市| 应城市| 富川| 融水|