Shiro與Spring整合

来源:https://www.cnblogs.com/zhiboluo/archive/2018/12/15/10125097.html
-Advertisement-
Play Games

Shiro引入Spring 添加jar包/maven配置 <!-- shiro支持 --> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>1.2.4</ver ...


Shiro引入Spring

       添加jar包/maven配置

<!-- shiro支持 -->

       <dependency>

           <groupId>org.apache.shiro</groupId>

           <artifactId>shiro-core</artifactId>

           <version>1.2.4</version>

       </dependency>

       <dependency>

           <groupId>org.apache.shiro</groupId>

           <artifactId>shiro-web</artifactId>

           <version>1.2.4</version>

       </dependency>

       <dependency>

           <groupId>org.apache.shiro</groupId>

           <artifactId>shiro-spring</artifactId>

           <version>1.2.4</version>

       </dependency>

       <!-- 緩存 註解 -->

       <dependency>

           <groupId>org.apache.shiro</groupId>

           <artifactId>shiro-aspectj</artifactId>

           <version>1.2.4</version>

       </dependency>

       <dependency>

           <groupId>org.apache.shiro</groupId>

           <artifactId>shiro-ehcache</artifactId>

           <version>1.2.4</version>

        </dependency>

 

 

添加spring-shiro.xml配置文件

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"

    xmlns:context="http://www.springframework.org/schema/context"

    xmlns:aop="http://www.springframework.org/schema/aop"

    xmlns:tx="http://www.springframework.org/schema/tx"

    xsi:schemaLocation="http://www.springframework.org/schema/beans

        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

        http://www.springframework.org/schema/context

        http://www.springframework.org/schema/context/spring-context-3.0.xsd

        http://www.springframework.org/schema/aop

        http://www.springframework.org/schema/aop/spring-aop-3.0.xsd

        http://www.springframework.org/schema/tx

        http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

       

    <context:annotation-config />

    <!-- 自定義Realm -->

    <bean id="myRealm" class="shiro03.realm.MyRealm"/>

   

    <!-- 安全管理器 -->

    <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager"

      <property name="realm" ref="myRealm"/> 

    </bean>

   

    <!-- 配置任何角色 -->

    <bean id="anyofroles" class="shiro03.realm.AnyOfRolesAuthorizationFilter"/>

   

    <!-- Shiro過濾器 -->

    <bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean"

        <!-- Shiro的核心安全介面,這個屬性是必須的 --> 

        <property name="securityManager" ref="securityManager"/>

        <!-- 身份認證失敗,則跳轉到登錄頁面的配置 --> 

        <property name="loginUrl" value="/index.jsp"/>

        <!-- 許可權認證失敗,則跳轉到指定頁面 --> 

        <property name="unauthorizedUrl" value="/unauthorized.jsp"/>

        <!-- <property name="anyofroles" ref="anyofroles"/> -->

        <!-- Shiro連接約束配置,即過濾鏈的定義 --> 

        <property name="filterChainDefinitions"

            <value> 

                 /login=anon

              /admin*=authc

              /student=anyofroles["admin,teacher"]

              /teacher=roles[admin]

            </value> 

        </property>

    </bean>

   

    <!-- 保證實現了Shiro內部lifecycle函數的bean執行 --> 

    <bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/> 

   

    <!-- 開啟Shiro註解 -->

    <bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" depends-on="lifecycleBeanPostProcessor"/> 

        <bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor"

      <property name="securityManager" ref="securityManager"/> 

    </bean>

</beans>

 

 

自定義Realm類MyRealm.java

 

public class MyRealm extends AuthorizingRealm{

    @Resource

    private UserService userService;

    /**

     * 為當限前登錄的用戶授予角色和權

     */

    @Override

    protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {

       String userName=(String)principals.getPrimaryPrincipal();

       SimpleAuthorizationInfo authorizationInfo=new SimpleAuthorizationInfo();

       authorizationInfo.setRoles(userService.getRoles(userName));

       authorizationInfo.setStringPermissions(userService.getPermissions(userName));

       return authorizationInfo;

    }

    /**

     * 驗證當前登錄的用戶

     */

    @Override

    protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {

       String userName=(String)token.getPrincipal();

           User user=userService.getByUserName(userName);

           if(user!=null){

              AuthenticationInfo authcInfo=new SimpleAuthenticationInfo(user.getUserName(),user.getPassword(),"xx");

              return authcInfo;

           }else{

              return null;            

           }

    }

}

 

 

自定義角色過濾器AnyOfRolesAuthorizationFilter.java

       當一個角色有多個功能模塊頁面的許可權時,會出現許可權失效問題,無法配置,需要自己定義角色過濾器。

public class AnyOfRolesAuthorizationFilter extends RolesAuthorizationFilter{

    @Override

    public boolean isAccessAllowed(ServletRequest request, ServletResponse response, Object mappedValue)

           throws IOException {

       Subject subject = getSubject(request, response);

        String[] rolesArray = (String[]) mappedValue;

        if (rolesArray == null || rolesArray.length == 0) {

            return true;

        }

        for (String roleName : rolesArray) {

            if (subject.hasRole(roleName)) {

                return true;

            }

        }

       return false;

    }

}  

 

      


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 面向對象設計原則 概述 對於面向對象軟體系統的設計而言,在支持可維護性的同時,提高系統的可復用性是一個至關重要的問題,如何同時提高一個軟體系統的可維護性和可復用性是面向對象設計需要解決的核心問題之一。在面向對象設計中,可維護性的復用是以設計原則為基礎的。每一個原則都蘊含一些面向對象設計的思想,可以從 ...
  • 環境:C++ 11 + win10 IDE:Clion 2018.3 AVL平衡樹是在BST二叉查找樹的基礎上添加了平衡機制。 我們把平衡的BST認為是任一節點的左子樹和右子樹的高度差為-1,0,1中的一種情況,即不存在相差兩層及以上。 所謂平衡機制就是BST在理想情況下搜索複雜度是o(logn) ...
  • eclipse項目過多怎麼方便管理呢? 可以使用workset來進行管理。這裡的workset跟.net 也就是visual studio中的項目解決方法類似,可以將項目、類庫進行分開管理。 可以點擊project explorer中小三角進行操作 然後在彈出界面中進行操作 ...
  • 前言 with語句的使用給我們帶來了很多的便利,最常用的可能就是關閉一個文件,釋放一把鎖。 既然with語句這麼好用,那我也想讓我自己寫的代碼也能夠使用with語句,該怎麼實現? 下麵具體介紹怎樣實現一個自己的with語句 使用類實現 要想使用with語句,那就要遵循with語句的使用規矩,也就是上 ...
  • 切片實例 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38 ...
  • 一、安裝nginx https://yq.aliyun.com/articles/101144?spm=5176.10695662.1996646101.searchclickresult.70af967bColksb 二、nginx.conf文件配置 /usr/local/nginx/conf/c ...
  • 原創作品,可以轉載,但是請標註出處地址: "https://www.cnblogs.com/V1haoge/p/10125279.html" SpringBoot整合MyBatis plus 步驟 第一步:添加必要的依賴 第一種是在已存在MyBatis的情況下,直接添加mybatis plus包即可 ...
  • 前面介紹了處理字元串的常用方法,還有一種分割字元串的場景也很常見,也就是按照某個規則將字元串切割為若幹子串。分割規則通常是指定某個分隔符,根據字元串內部的分隔符將字元串進行分割,例如逗號、空格等等都可以作為字元串的分隔符。正好String類型提供了split方法用於切割字元串,只要字元串變數調用sp ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...