Shiro學習(23)多項目集中權限管理

在作一些企業內部項目時或一些互聯網後臺時;可能會涉及到集中權限管理,統一進行多項目的權限管理;另外也須要統一的會話管理,即實現單點身份認證和受權控制。html

 

學習本章以前,請務必先學習《第十章 會話管理》和《第十六章 綜合實例》,本章代碼都是基於這兩章的代碼基礎上完成的。java

 

本章示例是同域名的場景下完成的,若是跨域請參考《第十五章 單點登陸》和《第十七章 OAuth2集成》瞭解使用CAS或OAuth2實現跨域的身份驗證和受權。另外好比客戶端/服務器端的安全校驗可參考《第二十章 無狀態Web應用集成》。mysql

 

 

部署架構 

一、有三個應用:用於用戶/權限控制的Server(端口:8080);兩個應用App1(端口9080)和App2(端口10080);nginx

二、使用Nginx反向代理這三個應用,nginx.conf的server配置部分以下:  git

Java代碼   收藏代碼
  1. server {  
  2.     listen 80;  
  3.     server_name  localhost;  
  4.     charset utf-8;  
  5.     location ~ ^/(chapter23-server)/ {  
  6.         proxy_pass http://127.0.0.1:8080;   
  7.         index /;  
  8.             proxy_set_header Host $host;  
  9.     }  
  10.     location ~ ^/(chapter23-app1)/ {  
  11.         proxy_pass http://127.0.0.1:9080;   
  12.         index /;  
  13.             proxy_set_header Host $host;  
  14.     }  
  15.     location ~ ^/(chapter23-app2)/ {  
  16.         proxy_pass http://127.0.0.1:10080;   
  17.         index /;  
  18.             proxy_set_header Host $host;  
  19.     }  
  20. }   

如訪問http://localhost/chapter23-server會自動轉發到http://localhost:8080/chapter23-servergithub

訪問http://localhost/chapter23-app1會自動轉發到http://localhost:9080/chapter23-app1;訪問http://localhost/chapter23-app3會自動轉發到http://localhost:10080/chapter23-app3web

 

Nginx的安裝及使用請自行搜索學習,本文再也不闡述。 redis

 

項目架構 

一、首先經過用戶/權限Server維護用戶、應用、權限信息;數據都持久化到MySQL數據庫中;spring

二、應用App1/應用App2使用客戶端Client遠程調用用戶/權限Server獲取會話及權限信息。sql

 

此處使用mysql存儲會話,而不是使用如Memcached/Redis之類的,主要目的是下降學習成本;若是換成如redis也不會很難;如: 


使用如Redis還一個好處就是無需在用戶/權限Server中開會話過時調度器,能夠藉助Redis自身的過時策略來完成。

 

模塊關係依賴




  

一、shiro-example-chapter23-pom模塊:提供了其餘全部模塊的依賴;這樣其餘模塊直接繼承它便可,簡化依賴配置,如shiro-example-chapter23-server:  

Java代碼   收藏代碼
  1. <parent>  
  2.     <artifactId>shiro-example-chapter23-pom</artifactId>  
  3.     <groupId>com.github.zhangkaitao</groupId>  
  4.     <version>1.0-SNAPSHOT</version>  
  5. </parent>  

二、shiro-example-chapter23-core模塊:提供給shiro-example-chapter23-server、shiro-example-chapter23-client、shiro-example-chapter23-app*模塊的核心依賴,好比遠程調用接口等;

  

三、shiro-example-chapter23-server模塊:提供了用戶、應用、權限管理功能;

 

四、shiro-example-chapter23-client模塊:提供給應用模塊獲取會話及應用對應的權限信息;

 

五、shiro-example-chapter23-app*模塊:各個子應用,如一些內部管理系統應用;其登陸都跳到shiro-example-chapter23-server登陸;另外權限都從shiro-example-chapter23-server獲取(如經過遠程調用)。  

  

shiro-example-chapter23-pom模塊

 

其pom.xml的packaging類型爲pom,而且在該pom中加入其餘模塊須要的依賴,而後其餘模塊只須要把該模塊設置爲parent便可自動繼承這些依賴,如shiro-example-chapter23-server模塊: 

Java代碼   收藏代碼
  1. <parent>  
  2.     <artifactId>shiro-example-chapter23-pom</artifactId>  
  3.     <groupId>com.github.zhangkaitao</groupId>  
  4.     <version>1.0-SNAPSHOT</version>  
  5. </parent>   

簡化其餘模塊的依賴配置等。 

 

shiro-example-chapter23-core模塊

 

提供了其餘模塊共有的依賴,如遠程調用接口:  

Java代碼   收藏代碼
  1. public interface RemoteServiceInterface {  
  2.     public Session getSession(String appKey, Serializable sessionId);  
  3.     Serializable createSession(Session session);  
  4.     public void updateSession(String appKey, Session session);  
  5.     public void deleteSession(String appKey, Session session);  
  6.     public PermissionContext getPermissions(String appKey, String username);  
  7. }   

提供了會話的CRUD,及根據應用key和用戶名獲取權限上下文(包括角色和權限字符串);shiro-example-chapter23-server模塊服務端實現;shiro-example-chapter23-client模塊客戶端調用。

 

另外提供了com.github.zhangkaitao.shiro.chapter23.core.ClientSavedRequest,其擴展了org.apache.shiro.web.util.SavedRequest;用於shiro-example-chapter23-app*模塊當訪問一些須要登陸的請求時,自動把請求保存下來,而後重定向到shiro-example-chapter23-server模塊登陸;登陸成功後再重定向回來;由於SavedRequest不保存URL中的schema://domain:port部分;因此才須要擴展SavedRequest;使得ClientSavedRequest能保存schema://domain:port;這樣才能從一個應用重定向另外一個(要否則只能在一個應用內重定向):  

Java代碼   收藏代碼
  1.     public String getRequestUrl() {  
  2.         String requestURI = getRequestURI();  
  3.         if(backUrl != null) {//1  
  4.             if(backUrl.toLowerCase().startsWith("http://") || backUrl.toLowerCase().startsWith("https://")) {  
  5.                 return backUrl;  
  6.             } else if(!backUrl.startsWith(contextPath)) {//2  
  7.                 requestURI = contextPath + backUrl;  
  8.             } else {//3  
  9.                 requestURI = backUrl;  
  10.             }  
  11.         }  
  12.         StringBuilder requestUrl = new StringBuilder(scheme);//4  
  13.         requestUrl.append("://");  
  14.         requestUrl.append(domain);//5  
  15.         //6  
  16.         if("http".equalsIgnoreCase(scheme) && port != 80) {  
  17.             requestUrl.append(":").append(String.valueOf(port));  
  18.         } else if("https".equalsIgnoreCase(scheme) && port != 443) {  
  19.             requestUrl.append(":").append(String.valueOf(port));  
  20.         }  
  21.         //7  
  22.         requestUrl.append(requestURI);  
  23.         //8  
  24.         if (backUrl == null && getQueryString() != null) {  
  25.             requestUrl.append("?").append(getQueryString());  
  26.         }  
  27.         return requestUrl.toString();  
  28.     }  
  29.    

一、若是從外部傳入了successUrl(登陸成功以後重定向的地址),且以http://或https://開頭那麼直接返回(相應的攔截器直接重定向到它便可);

二、若是successUrl有值但沒有上下文,拼上上下文;

三、不然,若是successUrl有值,直接賦值給requestUrl便可;不然,若是successUrl沒值,那麼requestUrl就是當前請求的地址;

五、拼上url前邊的schema,如http或https;

六、拼上域名;

七、拼上重定向到的地址(帶上下文);

八、若是successUrl沒值,且有查詢參數,拼上;

9返回該地址,相應的攔截器直接重定向到它便可。

 

shiro-example-chapter23-server模塊

簡單的實體關係圖  


簡單數據字典

用戶(sys_user)

名稱

類型

長度

描述

id

bigint

 

編號 主鍵

username

varchar

100

用戶名

password

varchar

100

密碼

salt

varchar

50

locked

bool

 

帳戶是否鎖定

應用(sys_app)

名稱

類型

長度

描述

id

bigint

 

編號 主鍵

name

varchar

100

應用名稱

app_key

varchar

100

應用key(惟一)

app_secret

varchar

100

應用安全碼

available

bool

 

是否鎖定

受權(sys_authorization)

名稱

類型

長度

描述

id

bigint

 

編號 主鍵

user_id

bigint

 

所屬用戶

app_id

bigint

 

所屬應用

role_ids

varchar

100

角色列表

用戶:比《第十六章 綜合實例》少了role_ids,由於本章是多項目集中權限管理;因此受權時須要指定相應的應用;而不是直接給用戶受權;因此不能在用戶中出現role_ids了;

應用:全部集中權限的應用;在此處須要指定應用key(app_key)和應用安全碼(app_secret),app在訪問server時須要指定本身的app_key和用戶名來獲取該app對應用戶權限信息;另外app_secret能夠認爲app的密碼,好比須要安全訪問時能夠考慮使用它,可參考《第二十章 無狀態Web應用集成》。另外available屬性表示該應用當前是否開啓;若是false表示該應用當前不可用,即不能獲取到相應的權限信息。

受權:給指定的用戶在指定的app下受權,即角色是與用戶和app存在關聯關係。

 

由於本章使用了《第十六章 綜合實例》代碼,因此還有其餘相應的表結構(本章未使用到)。

 

表/數據SQL

具體請參考

sql/ shiro-schema.sql (表結構)

sql/ shiro-data.sql  (初始數據)

 

實體

具體請參考com.github.zhangkaitao.shiro.chapter23.entity包下的實體,此處就不列舉了。

 

DAO

具體請參考com.github.zhangkaitao.shiro.chapter23.dao包下的DAO接口及實現。

 

Service

具體請參考com.github.zhangkaitao.shiro.chapter23.service包下的Service接口及實現。如下是出了基本CRUD以外的關鍵接口: 

Java代碼   收藏代碼
  1. public interface AppService {  
  2.     public Long findAppIdByAppKey(String appKey);// 根據appKey查找AppId   
  3. }  
Java代碼   收藏代碼
  1. public interface AuthorizationService {  
  2.     //根據AppKey和用戶名查找其角色  
  3.     public Set<String> findRoles(String appKey, String username);  
  4.     //根據AppKey和用戶名查找權限字符串  
  5.     public Set<String> findPermissions(String appKey, String username);  
  6. }   

根據AppKey和用戶名查找用戶在指定應用中對於的角色和權限字符串。

 

UserRealm  

Java代碼   收藏代碼
  1. protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {  
  2.     String username = (String)principals.getPrimaryPrincipal();  
  3.     SimpleAuthorizationInfo authorizationInfo = new SimpleAuthorizationInfo();  
  4.     authorizationInfo.setRoles(  
  5.         authorizationService.findRoles(Constants.SERVER_APP_KEY, username));  
  6.     authorizationInfo.setStringPermissions(  
  7.     authorizationService.findPermissions(Constants.SERVER_APP_KEY, username));  
  8.     return authorizationInfo;  
  9. }   

此處須要調用AuthorizationService的findRoles/findPermissions方法傳入AppKey和用戶名來獲取用戶的角色和權限字符串集合。其餘的和《第十六章 綜合實例》代碼同樣。

 

ServerFormAuthenticationFilter 

Java代碼   收藏代碼
  1. public class ServerFormAuthenticationFilter extends FormAuthenticationFilter {  
  2.     protected void issueSuccessRedirect(ServletRequest request, ServletResponse response) throws Exception {  
  3.         String fallbackUrl = (String) getSubject(request, response)  
  4.                 .getSession().getAttribute("authc.fallbackUrl");  
  5.         if(StringUtils.isEmpty(fallbackUrl)) {  
  6.             fallbackUrl = getSuccessUrl();  
  7.         }  
  8.         WebUtils.redirectToSavedRequest(request, response, fallbackUrl);  
  9.     }  
  10. }   

由於是多項目登陸,好比若是是從其餘應用中重定向過來的,首先檢查Session中是否有「authc.fallbackUrl」屬性,若是有就認爲它是默認的重定向地址;不然使用Server本身的successUrl做爲登陸成功後重定向到的地址。

 

MySqlSessionDAO

將會話持久化到Mysql數據庫;此處你們能夠將其實現爲如存儲到Redis/Memcached等,實現策略請參考《第十章 會話管理》中的會話存儲/持久化章節的MySessionDAO,徹底同樣。

 

MySqlSessionValidationScheduler

和《第十章 會話管理》中的會話驗證章節部分中的MySessionValidationScheduler徹底同樣。若是使用如Redis之類的有自動過時策略的DB,徹底能夠不用實現SessionValidationScheduler,直接藉助於這些DB的過時策略便可。

 

RemoteService  

Java代碼   收藏代碼
  1. public class RemoteService implements RemoteServiceInterface {  
  2.     @Autowired  private AuthorizationService authorizationService;  
  3.     @Autowired  private SessionDAO sessionDAO;  
  4.   
  5.     public Session getSession(String appKey, Serializable sessionId) {  
  6.         return sessionDAO.readSession(sessionId);  
  7.     }  
  8.     public Serializable createSession(Session session) {  
  9.         return sessionDAO.create(session);  
  10.     }  
  11.     public void updateSession(String appKey, Session session) {  
  12.         sessionDAO.update(session);  
  13.     }  
  14.     public void deleteSession(String appKey, Session session) {  
  15.         sessionDAO.delete(session);  
  16.     }  
  17.     public PermissionContext getPermissions(String appKey, String username) {  
  18.         PermissionContext permissionContext = new PermissionContext();  
  19.         permissionContext.setRoles(authorizationService.findRoles(appKey, username));  
  20.         permissionContext.setPermissions(authorizationService.findPermissions(appKey, username));  
  21.         return permissionContext;  
  22.     }  
  23. }   

將會使用HTTP調用器暴露爲遠程服務,這樣其餘應用就可使用相應的客戶端調用這些接口進行Session的集中維護及根據AppKey和用戶名獲取角色/權限字符串集合。此處沒有實現安全校驗功能,若是是局域網內使用能夠經過限定IP完成;不然須要使用如《第二十章 無狀態Web應用集成》中的技術完成安全校驗。

 

而後在spring-mvc-remote-service.xml配置文件把服務暴露出去:  

Java代碼   收藏代碼
  1. <bean id="remoteService"  
  2.   class="com.github.zhangkaitao.shiro.chapter23.remote.RemoteService"/>  
  3. <bean name="/remoteService"   
  4.   class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">  
  5.     <property name="service" ref="remoteService"/>  
  6.     <property name="serviceInterface"   
  7.       value="com.github.zhangkaitao.shiro.chapter23.remote.RemoteServiceInterface"/>  
  8. </bean>  

   

Shiro配置文件spring-config-shiro.xml 

和《第十六章 綜合實例》配置相似,可是須要在shiroFilter中的filterChainDefinitions中添加以下配置,即遠程調用不須要身份認證:  

Java代碼   收藏代碼
  1. /remoteService = anon  

對於userRealm的緩存配置直接禁用;由於若是開啓,修改了用戶權限不會自動同步到緩存;另外請參考《第十一章 緩存機制》進行緩存的正確配置。

 

服務器端數據維護

一、首先開啓ngnix反向代理;而後就能夠直接訪問http://localhost/chapter23-server/

二、輸入默認的用戶名密碼:admin/123456登陸

三、應用管理,進行應用的CRUD,主要維護應用KEY(必須惟一)及應用安全碼;客戶端就可使用應用KEY獲取用戶對應應用的權限了。 


四、受權管理,維護在哪一個應用中用戶的角色列表。這樣客戶端就能夠根據應用KEY及用戶名獲取到對應的角色/權限字符串列表了。 



 

shiro-example-chapter23-client模塊

Client模塊提供給其餘應用模塊依賴,這樣其餘應用模塊只須要依賴Client模塊,而後再在相應的配置文件中配置如登陸地址、遠程接口地址、攔截器鏈等等便可,簡化其餘應用模塊的配置。

 

配置遠程服務spring-client-remote-service.xml      

Java代碼   收藏代碼
  1. <bean id="remoteService"   
  2.   class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">  
  3.     <property name="serviceUrl" value="${client.remote.service.url}"/>  
  4.     <property name="serviceInterface"   
  5.       value="com.github.zhangkaitao.shiro.chapter23.remote.RemoteServiceInterface"/>  
  6. </bean>   

client.remote.service.url是遠程服務暴露的地址;經過相應的properties配置文件配置,後續介紹。而後就能夠經過remoteService獲取會話及角色/權限字符串集合了。

 

ClientRealm  

Java代碼   收藏代碼
  1. public class ClientRealm extends AuthorizingRealm {  
  2.     private RemoteServiceInterface remoteService;  
  3.     private String appKey;  
  4.     public void setRemoteService(RemoteServiceInterface remoteService) {  
  5.         this.remoteService = remoteService;  
  6.     }  
  7.     public void setAppKey(String appKey) {  
  8.         this.appKey = appKey;  
  9.     }  
  10.     protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {  
  11.         String username = (String) principals.getPrimaryPrincipal();  
  12.         SimpleAuthorizationInfo authorizationInfo = new SimpleAuthorizationInfo();  
  13.         PermissionContext context = remoteService.getPermissions(appKey, username);  
  14.         authorizationInfo.setRoles(context.getRoles());  
  15.         authorizationInfo.setStringPermissions(context.getPermissions());  
  16.         return authorizationInfo;  
  17.     }  
  18.     protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {  
  19.         //永遠不會被調用  
  20.         throw new UnsupportedOperationException("永遠不會被調用");  
  21.     }  
  22. }   

ClientRealm提供身份認證信息和受權信息,此處由於是其餘應用依賴客戶端,而這些應用不會實現身份認證,因此doGetAuthenticationInfo獲取身份認證信息直接無須實現。另外獲取受權信息,是經過遠程暴露的服務RemoteServiceInterface獲取,提供appKey和用戶名獲取便可。

 

ClientSessionDAO 

Java代碼   收藏代碼
  1. public class ClientSessionDAO extends CachingSessionDAO {  
  2.     private RemoteServiceInterface remoteService;  
  3.     private String appKey;  
  4.     public void setRemoteService(RemoteServiceInterface remoteService) {  
  5.         this.remoteService = remoteService;  
  6.     }  
  7.     public void setAppKey(String appKey) {  
  8.         this.appKey = appKey;  
  9.     }  
  10.     protected void doDelete(Session session) {  
  11.         remoteService.deleteSession(appKey, session);  
  12.     }  
  13.     protected void doUpdate(Session session) {  
  14.         remoteService.updateSession(appKey, session);  
  15. }  
  16. protected Serializable doCreate(Session session) {  
  17.         Serializable sessionId = remoteService.createSession(session);  
  18.         assignSessionId(session, sessionId);  
  19.         return sessionId;  
  20.     }  
  21.     protected Session doReadSession(Serializable sessionId) {  
  22.         return remoteService.getSession(appKey, sessionId);  
  23.     }  
  24. }   

Session的維護經過遠程暴露接口實現,即本地不維護會話。

 

ClientAuthenticationFilter  

Java代碼   收藏代碼
  1. public class ClientAuthenticationFilter extends AuthenticationFilter {  
  2.     protected boolean isAccessAllowed(ServletRequest request, ServletResponse response, Object mappedValue) {  
  3.         Subject subject = getSubject(request, response);  
  4.         return subject.isAuthenticated();  
  5.     }  
  6.     protected boolean onAccessDenied(ServletRequest request, ServletResponse response) throws Exception {  
  7.         String backUrl = request.getParameter("backUrl");  
  8.         saveRequest(request, backUrl, getDefaultBackUrl(WebUtils.toHttp(request)));  
  9.         return false;  
  10.     }  
  11.     protected void saveRequest(ServletRequest request, String backUrl, String fallbackUrl) {  
  12.         Subject subject = SecurityUtils.getSubject();  
  13.         Session session = subject.getSession();  
  14.         HttpServletRequest httpRequest = WebUtils.toHttp(request);  
  15.         session.setAttribute("authc.fallbackUrl", fallbackUrl);  
  16.         SavedRequest savedRequest = new ClientSavedRequest(httpRequest, backUrl);  
  17.         session.setAttribute(WebUtils.SAVED_REQUEST_KEY, savedRequest);  
  18. }  
  19.     private String getDefaultBackUrl(HttpServletRequest request) {  
  20.         String scheme = request.getScheme();  
  21.         String domain = request.getServerName();  
  22.         int port = request.getServerPort();  
  23.         String contextPath = request.getContextPath();  
  24.         StringBuilder backUrl = new StringBuilder(scheme);  
  25.         backUrl.append("://");  
  26.         backUrl.append(domain);  
  27.         if("http".equalsIgnoreCase(scheme) && port != 80) {  
  28.             backUrl.append(":").append(String.valueOf(port));  
  29.         } else if("https".equalsIgnoreCase(scheme) && port != 443) {  
  30.             backUrl.append(":").append(String.valueOf(port));  
  31.         }  
  32.         backUrl.append(contextPath);  
  33.         backUrl.append(getSuccessUrl());  
  34.         return backUrl.toString();  
  35.     }  
  36. }   

ClientAuthenticationFilter是用於實現身份認證的攔截器(authc),當用戶沒有身份認證時;

一、首先獲得請求參數backUrl,即登陸成功重定向到的地址;

二、而後保存保存請求到會話,並重定向到登陸地址(server模塊);

三、登陸成功後,返回地址按照以下順序獲取:backUrl、保存的當前請求地址、defaultBackUrl(即設置的successUrl);

 

ClientShiroFilterFactoryBean  

Java代碼   收藏代碼
  1. public class ClientShiroFilterFactoryBean extends ShiroFilterFactoryBean implements ApplicationContextAware {  
  2.     private ApplicationContext applicationContext;  
  3.     public void setApplicationContext(ApplicationContext applicationContext) {  
  4.         this.applicationContext = applicationContext;  
  5.     }  
  6.     public void setFiltersStr(String filters) {  
  7.         if(StringUtils.isEmpty(filters)) {  
  8.             return;  
  9.         }  
  10.         String[] filterArray = filters.split(";");  
  11.         for(String filter : filterArray) {  
  12.             String[] o = filter.split("=");  
  13.             getFilters().put(o[0], (Filter)applicationContext.getBean(o[1]));  
  14.         }  
  15.     }  
  16.     public void setFilterChainDefinitionsStr(String filterChainDefinitions) {  
  17.         if(StringUtils.isEmpty(filterChainDefinitions)) {  
  18.             return;  
  19.         }  
  20.         String[] chainDefinitionsArray = filterChainDefinitions.split(";");  
  21.         for(String filter : chainDefinitionsArray) {  
  22.             String[] o = filter.split("=");  
  23.             getFilterChainDefinitionMap().put(o[0], o[1]);  
  24.         }  
  25.     }  
  26. }   

一、setFiltersStr:設置攔截器,設置格式如「filterName=filterBeanName; filterName=filterBeanName」;多個之間分號分隔;而後經過applicationContext獲取filterBeanName對應的Bean註冊到攔截器Map中;

二、setFilterChainDefinitionsStr:設置攔截器鏈,設置格式如「url=filterName1[config],filterName2; url=filterName1[config],filterName2」;多個之間分號分隔;

 

Shiro客戶端配置spring-client.xml

提供了各應用通用的Shiro客戶端配置;這樣應用只須要導入相應該配置便可完成Shiro的配置,簡化了整個配置過程。  

Java代碼   收藏代碼
  1. <context:property-placeholder location=   
  2.     "classpath:client/shiro-client-default.properties,classpath:client/shiro-client.properties"/>   

提供給客戶端配置的properties屬性文件,client/shiro-client-default.properties是客戶端提供的默認的配置;classpath:client/shiro-client.properties是用於覆蓋客戶端默認配置,各應用應該提供該配置文件,而後提供各應用個性配置。

 

Java代碼   收藏代碼
  1. <bean id="remoteRealm" class="com.github.zhangkaitao.shiro.chapter23.client.ClientRealm">  
  2.     <property name="cachingEnabled" value="false"/>  
  3.     <property name="appKey" value="${client.app.key}"/>  
  4.     <property name="remoteService" ref="remoteService"/>  
  5. </bean>   

appKey:使用${client.app.key}佔位符替換,即須要在以前的properties文件中配置。 

 

Java代碼   收藏代碼
  1. <bean id="sessionIdCookie" class="org.apache.shiro.web.servlet.SimpleCookie">  
  2.     <constructor-arg value="${client.session.id}"/>  
  3.     <property name="httpOnly" value="true"/>  
  4.     <property name="maxAge" value="-1"/>  
  5.     <property name="domain" value="${client.cookie.domain}"/>  
  6.     <property name="path" value="${client.cookie.path}"/>  
  7. </bean>   

Session Id Cookie,cookie名字、域名、路徑等都是經過配置文件配置。  

 

Java代碼   收藏代碼
  1. <bean id="sessionDAO"   
  2.   class="com.github.zhangkaitao.shiro.chapter23.client.ClientSessionDAO">  
  3.     <property name="sessionIdGenerator" ref="sessionIdGenerator"/>  
  4.     <property name="appKey" value="${client.app.key}"/>  
  5.     <property name="remoteService" ref="remoteService"/>  
  6. </bean>   

SessionDAO的appKey,也是經過${ client.app.key }佔位符替換,須要在配置文件配置。

 

Java代碼   收藏代碼
  1. <bean id="sessionManager"   
  2.   class="org.apache.shiro.web.session.mgt.DefaultWebSessionManager">  
  3.         <property name="sessionValidationSchedulerEnabled" value="false"/>//省略其餘  
  4. </bean>   

其餘應用無須進行會話過時調度,因此sessionValidationSchedulerEnabled=false。  

 

Java代碼   收藏代碼
  1. <bean id="clientAuthenticationFilter"   
  2.   class="com.github.zhangkaitao.shiro.chapter23.client.ClientAuthenticationFilter"/>   

應用的身份認證使用ClientAuthenticationFilter,即若是沒有身份認證,則會重定向到Server模塊完成身份認證,身份認證成功後再重定向回來。 

 

Java代碼   收藏代碼
  1. <bean id="shiroFilter"   
  2.   class="com.github.zhangkaitao.shiro.chapter23.client.ClientShiroFilterFactoryBean">  
  3.     <property name="securityManager" ref="securityManager"/>  
  4.     <property name="loginUrl" value="${client.login.url}"/>  
  5.     <property name="successUrl" value="${client.success.url}"/>  
  6.     <property name="unauthorizedUrl" value="${client.unauthorized.url}"/>  
  7.     <property name="filters">  
  8.         <util:map>  
  9.             <entry key="authc" value-ref="clientAuthenticationFilter"/>  
  10.         </util:map>  
  11.     </property>  
  12.     <property name="filtersStr" value="${client.filters}"/>  
  13.     <property name="filterChainDefinitionsStr" value="${client.filter.chain.definitions}"/>  
  14. </bean>   

ShiroFilter使用咱們自定義的ClientShiroFilterFactoryBean,而後loginUrl(登陸地址)、successUrl(登陸成功後默認的重定向地址)、unauthorizedUrl(未受權重定向到的地址)經過佔位符替換方式配置;另外filtersStr和filterChainDefinitionsStr也是使用佔位符替換方式配置;這樣就能夠在各應用進行自定義了。

 

默認配置client/ shiro-client-default.properties 

Java代碼   收藏代碼
  1. #各應用的appKey  
  2. client.app.key=  
  3. #遠程服務URL地址  
  4. client.remote.service.url=http://localhost/chapter23-server/remoteService  
  5. #登陸地址  
  6. client.login.url=http://localhost/chapter23-server/login  
  7. #登陸成功後,默認重定向到的地址  
  8. client.success.url=/  
  9. #未受權重定向到的地址  
  10. client.unauthorized.url=http://localhost/chapter23-server/unauthorized  
  11. #session id 域名  
  12. client.cookie.domain=  
  13. #session id 路徑  
  14. client.cookie.path=/  
  15. #cookie中的session id名稱  
  16. client.session.id=sid  
  17. #cookie中的remember me名稱  
  18. client.rememberMe.id=rememberMe  
  19. #過濾器 name=filter-ref;name=filter-ref  
  20. client.filters=  
  21. #過濾器鏈 格式 url=filters;url=filters  
  22. client.filter.chain.definitions=/**=anon   

在各應用中主要配置client.app.key、client.filters、client.filter.chain.definitions。

 

 

shiro-example-chapter23-app*模塊

繼承shiro-example-chapter23-pom模塊 

Java代碼   收藏代碼
  1. <parent>  
  2.     <artifactId>shiro-example-chapter23-pom</artifactId>  
  3.     <groupId>com.github.zhangkaitao</groupId>  
  4.     <version>1.0-SNAPSHOT</version>  
  5. </parent>  

  

依賴shiro-example-chapter23-client模塊

<dependency>    <groupId>com.github.zhangkaitao</groupId>    <artifactId>shiro-example-chapter23-client</artifactId>    <version>1.0-SNAPSHOT</version></dependency> 

 

客戶端配置client/shiro-client.properties

 

配置shiro-example-chapter23-app1  

Java代碼 
  1. client.app.key=645ba612-370a-43a8-a8e0-993e7a590cf0  
  2. client.success.url=/hello  
  3. client.filter.chain.definitions=/hello=anon;/login=authc;/**=authc   

client.app.key是server模塊維護的,直接拷貝過來便可;client.filter.chain.definitions定義了攔截器鏈;好比訪問/hello,匿名便可。

 

配置shiro-example-chapter23-app2 

Java代碼 
  1. client.app.key=645ba613-370a-43a8-a8e0-993e7a590cf0  
  2. client.success.url=/hello  
  3. client.filter.chain.definitions=/hello=anon;/login=authc;/**=authc   

和app1相似,client.app.key是server模塊維護的,直接拷貝過來便可;client.filter.chain.definitions定義了攔截器鏈;好比訪問/hello,匿名便可。

 

web.xml 

Java代碼 
  1. <context-param>  
  2.     <param-name>contextConfigLocation</param-name>  
  3.     <param-value>  
  4.         classpath:client/spring-client.xml  
  5.     </param-value>  
  6. </context-param>  
  7. <listener>  
  8.     <listener-class>  
  9.         org.springframework.web.context.ContextLoaderListener  
  10.     </listener-class>  
  11. </listener>   

指定加載客戶端Shiro配置,client/spring-client.xml。 

 

Java代碼 
  1. <filter>  
  2.     <filter-name>shiroFilter</filter-name>  
  3.     <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>  
  4.     <init-param>  
  5.         <param-name>targetFilterLifecycle</param-name>  
  6.         <param-value>true</param-value>  
  7.     </init-param>  
  8. </filter>  
  9. <filter-mapping>  
  10.     <filter-name>shiroFilter</filter-name>  
  11.     <url-pattern>/*</url-pattern>  
  12. </filter-mapping>  

 配置ShiroFilter攔截器。

 

控制器

shiro-example-chapter23-app1

Java代碼 
  1. @Controller  
  2. public class HelloController {  
  3.     @RequestMapping("/hello")  
  4.     public String hello() {  
  5.         return "success";  
  6.     }  
  7.     @RequestMapping(value = "/attr", method = RequestMethod.POST)  
  8.     public String setAttr(  
  9.             @RequestParam("key") String key, @RequestParam("value") String value) {  
  10.         SecurityUtils.getSubject().getSession().setAttribute(key, value);  
  11.         return "success";  
  12.     }  
  13.     @RequestMapping(value = "/attr", method = RequestMethod.GET)  
  14.     public String getAttr(  
  15.             @RequestParam("key") String key, Model model) {  
  16.         model.addAttribute("value",   
  17.             SecurityUtils.getSubject().getSession().getAttribute(key));  
  18.         return "success";  
  19.     }  
  20.     @RequestMapping("/role1")  
  21.     @RequiresRoles("role1")  
  22.     public String role1() {  
  23.         return "success";  
  24.     }  
  25. }   

shiro-example-chapter23-app2的控制器相似,role2方法使用@RequiresRoles("role2")註解,即須要角色2。

 

其餘配置請參考源碼。 

 

 

測試

一、安裝配置啓動nginx

一、首先到http://nginx.org/en/download.html下載,好比我下載的是windows版本的;

 

二、而後編輯conf/nginx.conf配置文件,在server部分添加以下部分:

Java代碼 
  1. location ~ ^/(chapter23-server)/ {  
  2.  proxy_pass http://127.0.0.1:8080;   
  3.  index /;  
  4.         proxy_set_header Host $host;  
  5. }  
  6. location ~ ^/(chapter23-app1)/ {  
  7.  proxy_pass http://127.0.0.1:9080;   
  8.  index /;  
  9.         proxy_set_header Host $host;  
  10. }  
  11. location ~ ^/(chapter23-app2)/ {  
  12.  proxy_pass http://127.0.0.1:10080;   
  13.  index /;  
  14.         proxy_set_header Host $host;  
  15. }  

  

三、最後雙擊nginx.exe啓動Nginx便可。

 

已經配置好的nginx請到shiro-example-chapter23-nginx模塊下下週nginx-1.5.11.rar便可。

 

二、安裝依賴

一、首先安裝shiro-example-chapter23-core依賴,到shiro-example-chapter23-core模塊下運行mvn install安裝core模塊。

二、接着到shiro-example-chapter23-client模塊下運行mvn install安裝客戶端模塊。

 

三、啓動Server模塊

到shiro-example-chapter23-server模塊下運行mvn jetty:run啓動該模塊;使用http://localhost:8080/chapter23-server/便可訪問,由於啓動了nginx,那麼能夠直接訪問http://localhost/chapter23-server/

 

四、啓動App*模塊

到shiro-example-chapter23-app1和shiro-example-chapter23-app2模塊下分別運行mvn jetty:run啓動該模塊;使用http://localhost:9080/chapter23-app1/http://localhost:10080/chapter23-app2/便可訪問,由於啓動了nginx,那麼能夠直接訪問http://localhost/chapter23-app1/http://localhost/chapter23-app2/

五、服務器端維護

一、訪問http://localhost/chapter23-server/

二、輸入默認的用戶名密碼:admin/123456登陸

 

三、應用管理,進行應用的CRUD,主要維護應用KEY(必須惟一)及應用安全碼;客戶端就可使用應用KEY獲取用戶對應應用的權限了。

四、受權管理,維護在哪一個應用中用戶的角色列表。這樣客戶端就能夠根據應用KEY及用戶名獲取到對應的角色/權限字符串列表了。


  

六、App*模塊身份認證及受權

一、在未登陸狀況下訪問http://localhost/chapter23-app1/hello,看到下圖:

 二、登陸地址是http://localhost/chapter23-app1/login?backUrl=/chapter23-app1,即登陸成功後重定向回http://localhost/chapter23-app1(這是個錯誤地址,爲了測試登陸成功後重定向地址),點擊登陸按鈕後重定向到Server模塊的登陸界面: 

三、登陸成功後,會重定向到相應的登陸成功地址;接着訪問http://localhost/chapter23-app1/hello,看到以下圖:

四、能夠看到admin登陸,及其是否擁有role1/role2角色;能夠在server模塊移除role1角色或添加role2角色看看頁面變化;

 

五、能夠在http://localhost/chapter23-app1/hello頁面設置屬性,如key=123;接着訪問http://localhost/chapter23-app2/attr?key=key就能夠看到剛纔設置的屬性,以下圖:

另外在app2,用戶默認擁有role2角色,而沒有role1角色。

 

到此整個測試就完成了,能夠看出本示例實現了:會話的分佈式及權限的集中管理。

 

本示例缺點

一、沒有加緩存;

二、客戶端每次獲取會話/權限都須要經過客戶端訪問服務端;形成服務端單點和請求壓力大;單點能夠考慮使用集羣來解決;請求壓力大須要考慮配合緩存服務器(如Redis)來解決;即每次會話/權限獲取時首先查詢緩存中是否存在,若是有直接獲取便可;不然再查服務端;下降請求壓力;

三、會話的每次更新(好比設置屬性/更新最後訪問時間戳)都須要同步到服務端;也形成了請求壓力過大;能夠考慮在請求的最後只同步一次會話(須要對Shiro會話進行改造,經過如攔截器在執行完請求後完成同步,這樣每次請求只同步一次);

四、只能同域名才能使用,即會話ID是從同一個域名下獲取,若是跨域請考慮使用CAS/OAuth2之實現。

 

因此實際應用時可能仍是須要改造的,但大致思路是差很少的。

相關文章
相關標籤/搜索