Apache Shiro是一個非常易用的Java安全框架它能提供驗證、授權(quán)、加密和Session控制。Shiro非常輕量級而且API也非常易于理解可以使用Shiro完成從APP到企業(yè)級應(yīng)用的所有權(quán)限控制。
潁泉ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!從宏觀來看Shiro架構(gòu)中有3個重要概念Subjct、SecurityManager和Realms。
Subject
Subject實際上是正在執(zhí)行的用戶的抽象“用戶”這里可以指自然人第三方服務(wù)代理賬戶或者其他。
Subject被綁定在SecurityManager上當我們與Subject交互時實際上是與SecurityManager交互。
SecurityManager
SecurityManager是Shiro權(quán)限架構(gòu)的核心內(nèi)部維護了一系列安全組件。然而我們一旦將其配置完成真正給用戶強相關(guān)的就是Subject接口了。
當我們操作subject時實際上就是在操作SecurityManager。
Realms
Reamls是Shiro與我們應(yīng)用的安全數(shù)據(jù)溝通的橋梁在Realm中真正實現(xiàn)用戶登錄與授權(quán)的邏輯。
從這個角度上來講Realms其實是一個安全領(lǐng)域的DAO發(fā)將相關(guān)數(shù)據(jù)封裝并提供給Shiro當使用Shiro時我們必須制定至少一個Realms。
SecurityManager可以配置多個Realms但是至少一個。
Shiro已經(jīng)提供了默認的DAO實現(xiàn)如LDAP和JDBC另外我們也能實現(xiàn)自己的DAO例如使用Redis。
Subject(org.apache.shiro.subject.Subject)
與當前軟件交互的安全視角內(nèi)的用戶抽象用戶、第三方服務(wù)
SecurityManager(org.apache.shiro.mgt.SecurityManager)
Shiro安全框架的核心像保護傘一樣管理著和協(xié)調(diào)其內(nèi)部組件確保其協(xié)調(diào)運行。它也維護著每個用戶的Shiro角色因此它知道用戶的所有安全操作。
Authenticator(org.apache.shiro.authc.Authenticator)
負責執(zhí)行和驗證用戶登錄行為的組件當一個用戶試圖登錄該邏輯是由Authenticator執(zhí)行的。Authenticator知道如何去協(xié)調(diào)一個或者更多的realms這些realms保存著用戶信息。而且realms中的數(shù)據(jù)被取出用來驗證用戶。
Authentication Strategy(org.apache.shiro.)
如果配置了多個realmsAuthentication Strategy將負責協(xié)調(diào)各Realms的判斷邏輯。
Authorizer(org.apache.shiro.authz.Authorizer)
用戶控制用戶訪問主要是決定用戶能否訪問某些資源。類似于AuthenticatorAuthorizer也知道如何協(xié)調(diào)多個數(shù)據(jù)源并據(jù)此判斷這些用戶能否執(zhí)行某個給定的Action。
SessionManager(org.apache.shiro.session.mgt.SessionManager)
SessionManager知道怎樣創(chuàng)建和管理用戶Session生命周期從而為用戶提供一個健壯的Session體驗。這種機制是Shiro的獨創(chuàng)即使不是Web工程Shiro也能提供內(nèi)置的Session機制。
SessionDao負責存取Session。
SessionDao(org.apache.shiro.session.mgt.eis.SessionDao)
SessionDao替SessionManager完成Session的CRUD操作它允許任何Session保存方式Redis/Memcache/DB..
CacheManager(org.apache.shiro.cache.CacheManager)
用來保存Shiro使用的鑒權(quán)數(shù)據(jù)可以使用任何現(xiàn)有的cache產(chǎn)品。
Cryptography(org.apache.shiro.crypto.*)
加密工具包根據(jù)需要使用
Realms(org.apache.shiro.realm.Realm)
真正與安全相關(guān)數(shù)據(jù)例如賬戶我們可以創(chuàng)建任意多的Realm。
<?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:context="http://www.springframework.org/schema/context" default-lazy-init="true" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <description>Shiro Configuration</description> <!-- Shiro Filter --> <bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean"> <!-- 安全管理器 --> <property name="securityManager" ref="securityManager" /> <!-- 登陸的Url,暫時沒用 --> <property name="loginUrl" value="" /> <!-- 登錄成功的Url,未用 --> <property name="successUrl" value="/web/index.html" /> <!-- 為通過驗證的URL --> <property name="unauthorizedUrl" value="/index.html" /> <property name="filters"> <map> <entry key="authc" value-ref="formAuthenticationFilter" /> </map> </property> <property name="filterChainDefinitions"> <ref bean="shiroFilterChainDefinitions" /> </property> </bean> <!-- Shiro權(quán)限過濾過濾器定義 --> <bean name="shiroFilterChainDefinitions" class="java.lang.String"> <constructor-arg> <value> <!-- anon表示不校驗 --> /bower_components/** = anon /info/home/Vh2/**=anon /=anon <!-- 剩余請求均經(jīng)過authc --> /** = authc </value> </constructor-arg> </bean> <!-- Form認證過濾器 --> <bean id="formAuthenticationFilter" class="com.xxxx.xxxx.system.security.FormAuthenticationFilter" /> <!-- 定義Shiro安全管理配置 --> <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager"> <!-- 單realm應(yīng)用。如果有多個realm使用‘realms’屬性代替 --> <!-- 管理認證和授權(quán) --> <property name="realm" ref="systemAuthorizingRealm" /> <!-- 僅shiro適用 --> <property name="cacheManager" ref="shiroCacheManager" /> <!-- 分布式或單機session緩存 --> <property name="sessionManager" ref="sessionManager" /> <!-- 自動登錄使用,暫時沒有使用 --> <property name="rememberMeManager" ref="rememberMeManager" /> </bean> <bean id="systemAuthorizingRealm" class="com.emcc.xxxx.system.security.shiro.SystemAuthorizingRealm" /> <!-- 自定義會話管理配置 --> <bean id="sessionManager" class="com.emcc.xxxx.system.security.shiro.session.SessionManager"> <!-- Redis/本地保存 --> <property name="sessionDAO" ref="sessionDAO" /> <!-- 會話超時時間配置在system.properties 單位毫秒 --> <property name="globalSessionTimeout" value="${session.sessionTimeout}" /> <!-- 定時清理失效會話, 清理用戶直接關(guān)閉瀏覽器造成的孤立會話 --> <property name="sessionValidationInterval" value="${session.sessionTimeoutClean}" /> <property name="sessionValidationSchedulerEnabled" value="false" /> <!-- 配置cookie中sessionid的key --> <property name="sessionIdCookie" ref="sessionIdCookie" /> <property name="sessionIdCookieEnabled" value="true" /> </bean> <!-- 指定本系統(tǒng)SESSIONID, 默認為: JSESSIONID 問題: 與SERVLET容器名沖突, 如JETTY, TOMCAT 等默認JSESSIONID, 當跳出SHIRO SERVLET時如ERROR-PAGE容器會為JSESSIONID重新分配值導致登錄會話丟失! --> <bean id="sessionIdCookie" class="org.apache.shiro.web.servlet.SimpleCookie"> <constructor-arg name="name" value="web.session.id" /> </bean> <!-- 自定義Session存儲容器,集群環(huán)境使用 <bean id="sessionDAO" class="com.emcc.xxxx.system.security.shiro.session.JedisSessionDAO"> <property name="sessionIdGenerator" ref="idGen" /> <property name="sessionKeyPrefix" value="${redis.keyPrefix}_session_" /> </bean> --> <!-- 自定義Session存儲容器開發(fā)環(huán)境使用 --> <bean id="sessionDAO" class="com.emcc.xxxx.system.security.shiro.session.CacheSessionDAO"> <property name="sessionIdGenerator" ref="idGen" /> <property name="activeSessionsCacheName" value="activeSessionsCache" /> <property name="cacheManager" ref="shiroCacheManager" /> </bean> <!-- rememberMe管理器 --> <bean id="rememberMeManager" class="org.apache.shiro.web.mgt.CookieRememberMeManager"> <!-- rememberMe cookie加密的密鑰 建議每個項目都不一樣 默認AES算法 密鑰長度128 256 512 位 --> <property name="cipherKey" value="#{T(org.apache.shiro.codec.Base64).decode('4AvVhmFLUs0KTA3Kprsdag==')}" /> <property name="cookie" ref="rememberMeCookie" /> </bean> <bean id="rememberMeCookie" class="org.apache.shiro.web.servlet.SimpleCookie"> <constructor-arg value="rememberMe" /> <property name="httpOnly" value="true" /> <property name="maxAge" value="2592000" /><!-- 30天 --> </bean> <!-- 定義授權(quán)緩存管理器 <bean id="shiroCacheManager" class="com.emcc.xxxx.system.security.shiro.cache.SessionCacheManager" /> --> <!-- 定義授權(quán)緩存管理器 --> <bean id="shiroCacheManager" class="org.apache.shiro.cache.ehcache.EhCacheManager"> <property name="cacheManager" ref="cacheManager" /> </bean> <!-- 保證實現(xiàn)了Shiro內(nèi)部lifecycle函數(shù)的bean執(zhí)行 --> <bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor" /> <!-- securityManager --> <bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean"> <property name="staticMethod" value="org.apache.shiro.SecurityUtils.setSecurityManager" /> <property name="arguments" ref="securityManager" /> </bean> <!-- AOP式方法級權(quán)限檢查 --> <!-- AOP式方法級權(quán)限檢查 這兩個類主要用于注解 --> <bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor"> <property name="securityManager" ref="securityManager" /> </bean> </beans>
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
網(wǎng)站欄目:權(quán)限控制框架Shiro簡單介紹及配置實例-創(chuàng)新互聯(lián)
轉(zhuǎn)載來于:http://jinyejixie.com/article44/cchoee.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、網(wǎng)站制作、服務(wù)器托管、網(wǎng)站營銷、小程序開發(fā)、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容