springmvc shiro整合cas單點登入
阿新 • • 發佈:2019-01-24
pattern value works str 認證 uid -- sched script
shiro cas分為登入跟登出
maven依賴:
<dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-cas</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.jasig.cas.client</groupId> <artifactId>cas-client-core</artifactId> <version>3.2.1</version> </dependency>
一、登入
web.xml需要有shiro的過濾器,在springmvc之前。
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:web="http://java.sun.com/xml/ns/javaee" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"version="3.0"> <display-name>NSSP</display-name> <filter> <filter-name>logoutFilter</filter-name> <filter-class>org.jasig.cas.client.session.SingleSignOutFilter</filter-class> </filter> <filter-mapping> <filter-name>logoutFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- CAS: 用於單點退出,這個過濾器是在其他服務登出通知cas服務的時候,cas服務端通知本服務退出時起作用的--> <listener> <listener-class>org.jasig.cas.client.session.SingleSignOutHttpSessionListener</listener-class> </listener> <filter> <filter-name>shiroFilter</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> <init-param> <param-name>targetFilterLifecycle</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>shiroFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <context-param> <param-name>contextConfigLocation</param-name> <param-value>spring要用的相關.xml文件</param-value> </context-param> <filter> <description>字符集過濾器</description> <filter-name>encodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <description>字符集編碼</description> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>encodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <listener> <description>spring監聽器</description> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <description>spring mvc servlet</description> <servlet-name>springMvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <description>spring mvc 配置文件</description> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-mvc.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>springMvc</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
然後配置相關的url:
shiro.loginUrl=http://cas.server:8080/typp-cas-server/login?service=http://client.ip:8081/shiro-cas
配置cas服務端的登入地址,以及登入成功後的回調地址 shiro.logoutUrl=http://cas.server:8080/typp-cas-server/logout?service=http://client.ip:8081
配置cas服務端的登出地址,以及登出成功後的回調地址 shiro.cas.serverUrlPrefix=http://cas.server:8080/typp-cas-server
配置cas服務端項目地址,驗票的時候要用到。 shiro.cas.service=http://client.ip:8081/shiro-cas
配置驗票成功後的通知地址。為了保存登入狀態。
shiro的相關配置:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"> <description>Shiro 配置</description> <!-- 註解使用properties --> <bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean"> <property name="locations"> <list> <value>classpath:/*.properties</value> </list> </property> </bean> <!-- 會話ID生成器 --> <bean id="sessionIdGenerator" class="org.apache.shiro.session.mgt.eis.JavaUuidSessionIdGenerator" /> <!-- 會話Cookie模板 --> <bean id="sessionIdCookie" class="org.apache.shiro.web.servlet.SimpleCookie"> <constructor-arg value="sid" /> <property name="httpOnly" value="true" /> <property name="maxAge" value="-1" /> </bean> <bean id="sessionDAO" class="org.apache.shiro.session.mgt.eis.EnterpriseCacheSessionDAO"> <property name="activeSessionsCacheName" value="shiro-activeSessionCache" /> <property name="sessionIdGenerator" ref="sessionIdGenerator" /> </bean> <!-- 會話管理器 --> <bean id="sessionManager" class="org.apache.shiro.web.session.mgt.DefaultWebSessionManager"> <property name="globalSessionTimeout" value="900000" /> <property name="deleteInvalidSessions" value="true" /> <property name="sessionValidationSchedulerEnabled" value="true" /> <property name="sessionValidationScheduler" ref="sessionValidationScheduler" /> <property name="sessionDAO" ref="sessionDAO" /> <property name="sessionIdCookieEnabled" value="true" /> <property name="sessionIdCookie" ref="sessionIdCookie" /> </bean> <!-- 會話驗證調度器 --> <bean id="sessionValidationScheduler" class="org.apache.shiro.session.mgt.ExecutorServiceSessionValidationScheduler"> <property name="interval" value="1800000" /> <!-- 30分鐘 --> <property name="sessionManager" ref="sessionManager" /> </bean> <bean id="casRealm" class="org.apache.shiro.cas.CasRealm"> <property name="defaultRoles" value="ROLE_USER"/> <!-- cas服務端地址前綴 --> <property name="casServerUrlPrefix" value="${shiro.cas.serverUrlPrefix}"/> <!-- 應用服務地址,用來接收cas服務端票據,是要驗證票據保存登入狀態,所以要配成跟cas的回調地址是一樣的 --> <property name="casService" value="${shiro.cas.service}"/> </bean> <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager"> <property name="subjectFactory" ref="casSubjectFactory"/> <property name="realm" ref="casRealm"/> </bean> <bean id="casSubjectFactory" class="org.apache.shiro.cas.CasSubjectFactory"/> <bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor"> <property name="securityManager" ref="securityManager"/> </bean> <!-- 相當於調用SecurityUtils.setSecurityManager(securityManager) --> <bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean"> <property name="staticMethod" value="org.apache.shiro.SecurityUtils.setSecurityManager" /> <property name="arguments" ref="securityManager" /> </bean> <bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean"> <property name="securityManager" ref="securityManager" /> <property name="loginUrl" value="${shiro.loginUrl}" /> <!--<property name="successUrl" value="/linewell/auth/pass/workspace" />--> <property name="successUrl" value="/index.jsp"></property> <property name="unauthorizedUrl" value="/401.jsp" /> <property name="filters"> <util:map> <entry key="cas" value-ref="casFilter"></entry> <entry key="authc"> <bean class="club.codeapes.web.core.filter.AuthenticationFilter" /> </entry> </util:map> </property> <property name="filterChainDefinitions"> <value> /shiro-cas = cas /dist/**/*. = anon /* = roles[ROLE_USER] <!-- 所有的內容必須cas認證後有ROLE_USER角色才可以訪問 --> /protected/** =authc <!--authc裏面添加權限相關的把控 --> </value> </property> </bean>
<bean id="casFilter" class="org.apache.shiro.cas.CasFilter"> <!-- 配置驗證錯誤時的失敗頁面,這個過濾器是回調以後保存登入狀態的 --> <property name="failureUrl" value="${shiro.failureUrl}"/> </bean> <!-- 保證實現了Shiro內部lifecycle函數的bean執行 --> <bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor" /> </beans>
二、登出操作
寫一個控制器註銷局部會話:
@RequestMapping(value = "/logout") public @ResponseBody Map<String, Object> logout(HttpServletRequest request) { Map<String, Object> result = new HashMap<String, Object>(); Subject subject = SecurityUtils.getSubject(); SecurityUtils.getSecurityManager().logout(subject); return result; }
然後,註銷後,前端location.href到配置好的登出地址。這個是為了cas註銷全局的會話。全局會話實現是基於cookie的,然後要附上本項目的ip用於回調,當項目局部和全局會話都不在的時候會定向到shiro裏面配置好的登入的url,開始新的登入。
springmvc shiro整合cas單點登入