目标1:搭建单点登录做事端,开拓单点登录客户端
目标2:实现CAS 认证数据源设置
目标3:改换CAS 登录页面
目标4:节制CAS与SpringSecurity集成
目标5:完成用户中央单点登录功能
1.开源单点登录系统CAS入门1.1 什么是单点登录
单点登录(Single Sign On),简称为 SSO,是目前比较盛行的企业业务整合的办理方案之一。SSO的定义是在多个运用系统中,用户只须要登录一次就可以访问所有相互信赖的运用系统。
我们目前的系统存在诸多子系统,而这些子系统是分别支配在不同的做事器中,那么利用传统办法的session是无法办理的,我们须要利用干系的单点登录技能来办理。
1.2 什么是CAS
CAS 是 Yale 大学发起的一个开源项目,旨在为 Web 运用系统供应一种可靠的单点登录方法,CAS 在 2004 年 12 月正式成为 JA-SIG 的一个项目。CAS 具有以下特点:
【1】开源的企业级单点登录办理方案。
【2】CAS Server 为须要独立支配的 Web 运用。
【3】CAS Client 支持非常多的客户端(这里指单点登录系统中的各个 Web 运用),包括 Java, .Net, PHP, Perl, Apache, uPortal, Ruby 等。
从构造上看,CAS 包含两个部分: CAS Server 和 CAS Client。CAS Server 须要独立支配,紧张卖力对用户的认证事情;CAS Client 卖力处理对客户端受保护资源的访问要求,须要登录时,重定向到 CAS Server。下图是 CAS 最基本的协议过程:
SSO单点登录访问流程紧张有以下步骤:
访问做事:SSO客户端发送要求访问运用系统供应的做事资源。定向认证:SSO客户端会重定向用户要求到SSO做事器。用户认证:用户身份认证。发放票据:SSO做事器会产生一个随机的Service Ticket。验证票据:SSO做事器验证票据Service Ticket的合法性,验证通过后,许可客户端访问做事。传输用户信息:SSO做事器验证票据通过后,传输用户认证结果信息给客户端。1.3 CAS做事端支配
Cas做事端实在便是一个war包。
在资源\cas\source\cas-server-4.0.0-release\cas-server-4.0.0\modules目录下
cas-server-webapp-4.0.0.war 将其改名为cas.war放入tomcat目录下的webapps下。启动tomcat自动解压war包。浏览器输入http://localhost:8080/cas/login ,可看到登录页面
不要嫌弃这个页面丑,我们后期可以再提升它的颜值。暂时把把稳力放在功能实现上。
这里有个固定的用户名和密码 casuser /Mellon
登录成功后会跳到登录成功的提示页面
1.4 CAS做事端配置
1.4.1端口修正
如果我们不肯望用8080端口访问CAS, 可以修正端口
(1)修正TOMCAT的端口
打开tomcat 目录 conf\server.xml 找到下面的配置
将端口8080,改为9100
(2)修正CAS配置文件
修正cas的WEB-INF/cas.properties
server.name=http://localhost:9100
1.4.2去除https认证
CAS默认利用的是HTTPS协议,如果利用HTTPS协议须要SSL安全证书(需向特定的机构申请和购买) 。如果对安全哀求不高或是在开拓测试阶段,可利用HTTP协议。我们这里讲解通过修正配置,让CAS利用HTTP协议。
(1)修正cas的WEB-INF/deployerConfigContext.xml
找到下面的配置
<bean class=\"大众org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler\"大众p:httpClient-ref=\公众httpClient\公众/>
这里须要增加参数p:requireSecure=“false”,requireSecure属性意思为是否须要安全验证,即HTTPS,false为不采取
(2)修正cas的/WEB-INF/spring-configuration/ticketGrantingTicketCookieGenerator.xml
找到下面配置
<bean id=\"大众ticketGrantingTicketCookieGenerator\"大众 class=\公众org.jasig.cas.web.support.CookieRetrievingCookieGenerator\"大众 p:cookieSecure=\"大众true\公众 p:cookieMaxAge=\"大众-1\公众 p:cookieName=\"大众CASTGC\"大众 p:cookiePath=\"大众/cas\公众 />
参数p:cookieSecure=“true”,同理为HTTPS验证干系,TRUE为采取HTTPS验证,FALSE为不采取https验证。
参数p:cookieMaxAge=\公众-1\公众,是COOKIE的最大生命周期,-1为无生命周期,即只在当前打开的窗口有效,关闭或重新打开其它窗口,仍会哀求验证。可以根据须要修正为大于0的数字,比如3600等,意思是在3600秒内,打开任意窗口,都不须要验证。
我们这里将cookieSecure改为false , cookieMaxAge 改为3600
(3)修正cas的WEB-INF/spring-configuration/warnCookieGenerator.xml
找到下面配置
<bean id=\公众warnCookieGenerator\"大众 class=\"大众org.jasig.cas.web.support.CookieRetrievingCookieGenerator\公众p:cookieSecure=\"大众true\公众p:cookieMaxAge=\"大众-1\"大众p:cookieName=\公众CASPRIVACY\"大众p:cookiePath=\"大众/cas\公众 />
我们这里将cookieSecure改为false , cookieMaxAge 改为3600
1.5 CAS客户端入门小Demo
1.5.1客户端工程1搭建
(1)搭建工程引入依赖
创建Maven工程 (war)casclient_demo1 引入cas客户端依赖并制订tomcat运行端口为9001
<dependencies><!-- cas --> <dependency> <groupId>org.jasig.cas.client</groupId> <artifactId>cas-client-core</artifactId> <version>3.3.3</version> </dependency> <dependency><groupId>javax.servlet</groupId><artifactId>servlet-api</artifactId><version>2.5</version> <scope>provided</scope></dependency></dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin><groupId>org.apache.tomcat.maven</groupId><artifactId>tomcat7-maven-plugin</artifactId><configuration><!-- 指定端口 --><port>9001</port><!-- 要求路径 --><path>/</path></configuration> </plugin> </plugins> </build>
(2)添加web.xml
<?xml version=\公众1.0\公众 encoding=\公众UTF-8\公众?><web-app xmlns:xsi=\"大众http://www.w3.org/2001/XMLSchema-instance\"大众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_2_5.xsd\"大众version=\"大众2.5\"大众> <!-- 用于单点退出,该过滤器用于实现单点登出功能,可选配置 --> <listener> <listener-class>org.jasig.cas.client.session.SingleSignOutHttpSessionListener</listener-class> </listener> <!-- 该过滤器用于实现单点登出功能,可选配置。 --> <filter> <filter-name>CAS Single Sign Out Filter</filter-name> <filter-class>org.jasig.cas.client.session.SingleSignOutFilter</filter-class> </filter> <filter-mapping> <filter-name>CAS Single Sign Out Filter</filter-name> <url-pattern>/</url-pattern> </filter-mapping> <!-- 该过滤器卖力用户的认证事情,必须启用它 --> <filter> <filter-name>CASFilter</filter-name> <filter-class>org.jasig.cas.client.authentication.AuthenticationFilter</filter-class> <init-param> <param-name>casServerLoginUrl</param-name> <param-value>http://localhost:9100/cas/login</param-value> <!--这里的server是做事真个IP --> </init-param> <init-param> <param-name>serverName</param-name> <param-value>http://localhost:9001</param-value> </init-param> </filter> <filter-mapping> <filter-name>CASFilter</filter-name> <url-pattern>/</url-pattern> </filter-mapping> <!-- 该过滤器卖力对Ticket的校验事情,必须启用它 --> <filter> <filter-name>CAS Validation Filter</filter-name> <filter-class> org.jasig.cas.client.validation.Cas20ProxyReceivingTicketValidationFilter</filter-class> <init-param> <param-name>casServerUrlPrefix</param-name> <param-value>http://localhost:9100/cas</param-value> </init-param> <init-param> <param-name>serverName</param-name> <param-value>http://localhost:9001</param-value> </init-param> </filter> <filter-mapping> <filter-name>CAS Validation Filter</filter-name> <url-pattern>/</url-pattern> </filter-mapping> <!-- 该过滤器卖力实现HttpServletRequest要求的包裹, 比如许可开拓者通过HttpServletRequest的getRemoteUser()方法得到SSO登任命户的登录名,可选配置。 --> <filter> <filter-name>CAS HttpServletRequest Wrapper Filter</filter-name> <filter-class> org.jasig.cas.client.util.HttpServletRequestWrapperFilter</filter-class> </filter> <filter-mapping> <filter-name>CAS HttpServletRequest Wrapper Filter</filter-name> <url-pattern>/</url-pattern> </filter-mapping> <!-- 该过滤器使得开拓者可以通过org.jasig.cas.client.util.AssertionHolder来获取用户的登录名。 比如AssertionHolder.getAssertion().getPrincipal().getName()。 --> <filter> <filter-name>CAS Assertion Thread Local Filter</filter-name> <filter-class>org.jasig.cas.client.util.AssertionThreadLocalFilter</filter-class> </filter> <filter-mapping> <filter-name>CAS Assertion Thread Local Filter</filter-name> <url-pattern>/</url-pattern> </filter-mapping> </web-app>
(3)编写index.jsp
<%@ page language=\公众java\"大众 contentType=\"大众text/html; charset=utf-8\"大众 pageEncoding=\"大众utf-8\"大众%><!DOCTYPE html PUBLIC \"大众-//W3C//DTD HTML 4.01 Transitional//EN\公众 \公众http://www.w3.org/TR/html4/loose.dtd\"大众><html><head><meta http-equiv=\"大众Content-Type\"大众 content=\"大众text/html; charset=utf-8\公众><title>一品优购</title></head><body>欢迎来到一品优购<%=request.getRemoteUser()%></body></html>
request.getRemoteUser()为获取远程登录名
1.5.2客户端工程2搭建
(1)创建Maven工程 (war)casclient_demo2 引入cas客户端依赖并制订tomcat运行端口为9002
(2)创建web.xml,参照casclient_demo1 ,将serverName的值改为http://localhost:9002,一共两处
(3)创建index.jsp ,内容显示“欢迎来到二品优购”
1.5.3单点登录测试
(1)启动cas支配的tomcat
(2)启动客户端工程1和客户端工程2
(3)地址栏输入http://localhost:9001/ 和http://localhost:9002/ ,地址均会跳转到CAS登录页
(4)输入用户名和密码后,页面跳转回9002 ,再次访问9001也可以打开主页面。
1.5.4单点退出登录
地址栏输入 http://localhost:9100/cas/logout
即可看到退出后的提示页面
我们可以将这个链接添加到index.jsp中
<a href=\"大众http://localhost:9100/cas/logout\公众>退出登录</a>
但我们更希望退出登录后,能自动跳转到某个页面,那如何处理呢?
修正cas系统的配置文件cas-servlet.xml
<bean id=\"大众logoutAction\"大众 class=\"大众org.jasig.cas.web.flow.LogoutAction\"大众 p:servicesManager-ref=\"大众servicesManager\"大众 p:followServiceRedirects=\公众${cas.logout.followServiceRedirects:true}\公众/>
改为true后,可以在退出时跳转页面到目标页面,修正index.jsp的退出链接
<a href=\"大众http://localhost:9100/cas/logout?service=http://www.baidu.com\"大众>退出登录</a>2.CAS做事端数据源设置
2.1需求剖析
我们现在让用户名密码从我们的品优购的user表里做验证
2.2配置数据源
(1)修正cas做事端中web-inf下deployerConfigContext.xml ,添加如下配置
<bean id=\公众dataSource\"大众 class=\"大众com.mchange.v2.c3p0.ComboPooledDataSource\"大众 p:driverClass=\"大众com.mysql.jdbc.Driver\公众 p:jdbcUrl=\公众jdbc:mysql://127.0.0.1:3306/pinyougoudb?characterEncoding=utf8\公众 p:user=\"大众root\"大众 p:password=\"大众123456\"大众 /> <bean id=\"大众passwordEncoder\"大众 class=\"大众org.jasig.cas.authentication.handler.DefaultPasswordEncoder\"大众 c:encodingAlgorithm=\公众MD5\"大众 p:characterEncoding=\"大众UTF-8\公众 /> <bean id=\"大众dbAuthHandler\"大众 class=\"大众org.jasig.cas.adaptors.jdbc.QueryDatabaseAuthenticationHandler\"大众 p:dataSource-ref=\公众dataSource\"大众 p:sql=\"大众select password from tb_user where username = ?\"大众 p:passwordEncoder-ref=\公众passwordEncoder\"大众/>
然后在配置文件开始部分找到如下配置
<bean id=\公众authenticationManager\公众 class=\"大众org.jasig.cas.authentication.PolicyBasedAuthenticationManager\公众> <constructor-arg> <map> <entry key-ref=\公众proxyAuthenticationHandler\"大众 value-ref=\"大众proxyPrincipalResolver\"大众 /> <entry key-ref=\公众primaryAuthenticationHandler\公众 value-ref=\"大众primaryPrincipalResolver\"大众 /> </map> </constructor-arg> <property name=\公众authenticationPolicy\公众> <bean class=\公众org.jasig.cas.authentication.AnyAuthenticationPolicy\"大众 /> </property></bean>
个中
<entry key-ref=\"大众primaryAuthenticationHandler\"大众 value-ref=\公众primaryPrincipalResolver\"大众 />
一句是利用固定的用户名和密码,我们不才面可以看到这两个bean ,如果我们利用数据库认证用户名和密码,须要将这句注释掉。
添加下面这一句配置
<entry key-ref=\"大众dbAuthHandler\公众 value-ref=\公众primaryPrincipalResolver\"大众/>
(2)将以下三个jar包放入webapps\cas\WEB-INF\lib下
(这三个jar包在资源\cas\jar目录下)
用数据库中的用户名和密码进行测试
3.CAS做事端界面改造3.1需求剖析
我们现在动手将CAS默认的登录页变动为自己的品优购上岸页
3.2洗面革心
3.2.1拷贝资源
(1)将品优购的上岸页login.html拷贝到cas系统下WEB-INF\view\jsp\default\ui 目录下
(2)将css js等文件夹拷贝到 cas目录下
(3) 将原来的casLoginView.jsp 改名(可以为之后的修正操作做参照),将login.html改名为casLoginView.jsp
3.2.2修正页面
编辑casLoginView.jsp 内容
(1)添加指令
<%@ page pageEncoding=\"大众UTF-8\"大众 %><%@ page contentType=\"大众text/html; charset=UTF-8\公众 %><%@ taglib prefix=\"大众c\公众 uri=\公众http://java.sun.com/jsp/jstl/core\公众 %><%@ taglib prefix=\"大众spring\"大众 uri=\"大众http://www.springframework.org/tags\"大众 %><%@ taglib prefix=\公众form\"大众 uri=\"大众http://www.springframework.org/tags/form\公众 %><%@ taglib prefix=\"大众fn\公众 uri=\"大众http://java.sun.com/jsp/jstl/functions\公众 %>
(2)修正form标签
<form:form method=\"大众post\公众 id=\"大众fm1\"大众 commandName=\"大众${commandName}\"大众 htmlEscape=\公众true\公众 class=\"大众sui-form\公众>......</form:form>
(3)修正用户名框
<form:input id=\"大众username\公众 tabindex=\公众1\"大众 accesskey=\"大众${userNameAccessKey}\"大众 path=\公众username\"大众 autocomplete=\"大众off\"大众 htmlEscape=\"大众true\"大众 placeholder=\"大众邮箱/用户名/手机号\公众 class=\"大众span2 input-xfat\"大众 />
(4)修正密码框
<form:password id=\"大众password\"大众 tabindex=\"大众2\"大众 path=\"大众password\公众 accesskey=\公众${passwordAccessKey}\"大众 htmlEscape=\"大众true\"大众 autocomplete=\"大众off\"大众 placeholder=\"大众请输入密码\"大众 class=\"大众span2 input-xfat\公众 />
(5)修正上岸按钮
<input type=\"大众hidden\"大众 name=\"大众lt\"大众 value=\"大众${loginTicket}\"大众 /><input type=\"大众hidden\公众 name=\"大众execution\"大众 value=\"大众${flowExecutionKey}\"大众 /><input type=\"大众hidden\"大众 name=\公众_eventId\"大众 value=\"大众submit\公众 /><input class=\"大众sui-btn btn-block btn-xlarge btn-danger\"大众 accesskey=\"大众l\公众 value=\"大众上岸\"大众 type=\公众submit\"大众 />
修正后效果如下:
3.3缺点提示
在表单内加入缺点提示框
<form:errors path=\公众\"大众 id=\"大众msg\公众 cssClass=\"大众errors\公众 element=\公众div\"大众 htmlEscape=\"大众false\"大众 />
测试:输入缺点的用户名和密码,提示是英文。这个提示信息是在WEB-INF\classes目录下的messages.properties文件中
authenticationFailure.AccountNotFoundException=Invalid credentials.authenticationFailure.FailedLoginException=Invalid credentials.
设置国际化为zn_CN ,修正cas-servlet.xml
<bean id=\"大众localeResolver\"大众 class=\公众org.springframework.web.servlet.i18n.CookieLocaleResolver\"大众 p:defaultLocale=\"大众zh_CN\"大众 />
我们须要将此信息拷贝到messages_zh_CN.properties下,并改为中文提示(转码)
authenticationFailure.AccountNotFoundException=\u7528\u6237\u4E0D\u5B58\u5728.authenticationFailure.FailedLoginException=\u5BC6\u7801\u9519\u8BEF.
第一个是用户名不存在时的缺点提示
第二个是密码缺点的提示
4. CAS客户端与SpringSecurity集成4.1 Spring Security测试工程搭建
(1)建立Maven项目casclient_demo3 ,引入spring依赖和spring secrity 干系依赖 ,tomcat端口设置为9003
(2)建立web.xml ,添加过滤器等配置
(3)创建配置文件spring-security.xml
(4)添加html页面
4.2 Spring Security与 CAS集成
(1)引入依赖
<dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-cas</artifactId> <version>4.1.0.RELEASE</version> </dependency> <dependency> <groupId>org.jasig.cas.client</groupId> <artifactId>cas-client-core</artifactId> <version>3.3.3</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </exclusion> </exclusions> </dependency>
(2)修正spring-security.xml
<?xml version=\"大众1.0\"大众 encoding=\公众UTF-8\"大众?><beans:beans xmlns=\"大众http://www.springframework.org/schema/security\公众xmlns:beans=\"大众http://www.springframework.org/schema/beans\"大众 xmlns:xsi=\公众http://www.w3.org/2001/XMLSchema-instance\公众xsi:schemaLocation=\"大众http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd\"大众><!-- entry-point-ref 入口点引用 --><http use-expressions=\公众false\"大众 entry-point-ref=\"大众casProcessingFilterEntryPoint\"大众> <intercept-url pattern=\"大众/\公众 access=\"大众ROLE_USER\公众/> <csrf disabled=\"大众true\公众/> <!-- custom-filter为过滤器, position 表示将过滤器放在指定的位置上,before表示放在指定位置之前 ,after表示放在指定的位置之后 --> <custom-filter ref=\公众casAuthenticationFilter\公众 position=\"大众CAS_FILTER\"大众 /> <custom-filter ref=\"大众requestSingleLogoutFilter\公众 before=\"大众LOGOUT_FILTER\"大众/> <custom-filter ref=\"大众singleLogoutFilter\"大众 before=\"大众CAS_FILTER\公众/> </http> <!-- CAS入口点 开始 --> <beans:bean id=\"大众casProcessingFilterEntryPoint\"大众 class=\"大众org.springframework.security.cas.web.CasAuthenticationEntryPoint\公众> <!-- 单点登录做事器登录URL --> <beans:property name=\"大众loginUrl\公众 value=\"大众http://localhost:9100/cas/login\公众/> <beans:property name=\公众serviceProperties\公众 ref=\"大众serviceProperties\"大众/> </beans:bean> <beans:bean id=\公众serviceProperties\公众 class=\"大众org.springframework.security.cas.ServiceProperties\"大众> <!--service 配置自身工程的根地址+/login/cas --> <beans:property name=\"大众service\"大众 value=\"大众http://localhost:9003/login/cas\公众/> </beans:bean> <!-- CAS入口点 结束 --> <!-- 认证过滤器 开始 --> <beans:bean id=\"大众casAuthenticationFilter\"大众 class=\"大众org.springframework.security.cas.web.CasAuthenticationFilter\"大众> <beans:property name=\"大众authenticationManager\"大众 ref=\"大众authenticationManager\公众/> </beans:bean> <!-- 认证管理器 --><authentication-manager alias=\"大众authenticationManager\"大众><authentication-provider ref=\"大众casAuthenticationProvider\"大众></authentication-provider></authentication-manager><!-- 认证供应者 --><beans:bean id=\"大众casAuthenticationProvider\公众 class=\"大众org.springframework.security.cas.authentication.CasAuthenticationProvider\公众> <beans:property name=\公众authenticationUserDetailsService\公众> <beans:bean class=\"大众org.springframework.security.core.userdetails.UserDetailsByNameServiceWrapper\公众> <beans:constructor-arg ref=\"大众userDetailsService\"大众 /> </beans:bean> </beans:property> <beans:property name=\"大众serviceProperties\公众 ref=\"大众serviceProperties\公众/> <!-- ticketValidator 为票据验证器 --> <beans:property name=\公众ticketValidator\公众> <beans:bean class=\"大众org.jasig.cas.client.validation.Cas20ServiceTicketValidator\"大众> <beans:constructor-arg index=\公众0\"大众 value=\公众http://localhost:9100/cas\"大众/> </beans:bean> </beans:property> <beans:property name=\"大众key\"大众 value=\公众an_id_for_this_auth_provider_only\"大众/> </beans:bean> <!-- 认证类 --><beans:bean id=\"大众userDetailsService\"大众 class=\"大众cn.itcast.demo.service.UserDetailServiceImpl\公众/> <!-- 认证过滤器 结束 --><!-- 单点登出 开始 --> <beans:bean id=\公众singleLogoutFilter\"大众 class=\公众org.jasig.cas.client.session.SingleSignOutFilter\"大众/> <beans:bean id=\公众requestSingleLogoutFilter\"大众 class=\公众org.springframework.security.web.authentication.logout.LogoutFilter\"大众> <beans:constructor-arg value=\公众http://localhost:9100/cas/logout?service=http://www.baidu.com\"大众/> <beans:constructor-arg> <beans:bean class=\"大众org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler\"大众/> </beans:constructor-arg> <beans:property name=\公众filterProcessesUrl\公众 value=\"大众/logout/cas\公众/> </beans:bean> <!-- 单点登出 结束 --> </beans:beans>
(3)创建UserDetailsServiceImpl
/ 认证类 /public class UserDetailServiceImpl implements UserDetailsService {@Overridepublic UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {//构建角色凑集List<GrantedAuthority> authorities=new ArrayList();authorities.add(new SimpleGrantedAuthority(\公众ROLE_USER\"大众));return new User(username, \"大众\"大众 , authorities);}}
这个类的紧张浸染是在上岸后得到用户名,可以根据用户名查询角色或实行一些逻辑。
4.3获取登录名
我们在处理后端逻辑须要得到登录名,那么如何获取单点登录的用户名呢? 实在和我们之前得到用户名的办法是完备相同的,我们下面来做个测试。
(1)web.xml 添加springmvc
<servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 指定加载的配置文件 ,通过参数contextConfigLocation加载--> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern>.do</url-pattern> </servlet-mapping>
(2)创建springmvc.xml
<context:component-scan base-package=\公众cn.itcast.demo\"大众 /><mvc:annotation-driven />
(3)创建UserController
@RestControllerpublic class UserController {@RequestMapping(\"大众/findLoginUser\"大众)public void findLoginUser(){String name = SecurityContextHolder.getContext().getAuthentication().getName();System.out.println(name);}}
地址栏输入http://localhost:9003/findLoginUser.do 即可在掌握台看到输出的登录名。
4.4退出登录
修正spring-security.xml
<beans:bean id=\公众requestSingleLogoutFilter\"大众 class=\"大众org.springframework.security.web.authentication.logout.LogoutFilter\公众> <beans:constructor-arg value=\"大众http://localhost:9100/cas/logout?service=http://localhost:9003/index2.html\"大众/> <beans:constructor-arg> <beans:bean class=\"大众org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler\"大众/> </beans:constructor-arg> <beans:property name=\"大众filterProcessesUrl\"大众 value=\"大众/logout/cas\"大众/> </beans:bean>
在页面上添加链接
<a href=\"大众/logout/cas\"大众>退出登录</a>
创建index2.html,将index2.html设置为可匿名访问
<http pattern=\公众/index2.html\公众 security=\公众none\"大众></http>5.品优购用户中央
5.1需求剖析
用户中央实现单点登录。
5.2代码实现
5.2.1用户中央实现单点登录
(1)将用户中央干系的页面(home-开头的)拷贝至 pinnyougou-user-web
(2)pom.xml 引入springSecurity、cas客户端和springSecurity Cas整合包依赖(参照casclient_demo3)。
(3)web.xml 添加spring-security过滤器(参照参照casclient_demo3)设置首页为home-index.html
<welcome-file-list><welcome-file>home-index.html</welcome-file></welcome-file-list>
(4)构建UserDetailsServiceImpl.java (参照casclient_demo3)
(5)添加spring-security.xml(参照casclient_demo3),并做以下修正
配置匿名访问资源
<!-- 匿名访问资源 --><http pattern=\"大众/css/\公众 security=\"大众none\"大众></http><http pattern=\"大众/js/\"大众 security=\公众none\公众></http><http pattern=\"大众/image/\"大众 security=\"大众none\"大众></http><http pattern=\"大众/plugins/\"大众 security=\"大众none\"大众></http><http pattern=\"大众/register.html\"大众 security=\公众none\"大众></http><http pattern=\"大众/user/add.do\"大众 security=\"大众none\"大众></http><http pattern=\"大众/user/sendCode.do\"大众 security=\公众none\"大众></http>
设置做事地址属性
<beans:bean id=\"大众serviceProperties\"大众 class=\"大众org.springframework.security.cas.ServiceProperties\"大众> <beans:property name=\"大众service\"大众 value=\"大众http://localhost:9106/login/cas\"大众/></beans:bean>
设置认证类
<beans:bean id=\"大众userDetailsService\公众 class=\"大众com.pinyougou.user.service.UserDetailServiceImpl\"大众/>
5.2.2页面显示用户名
(1)pinyougou-user-web创建LoginController.java
@RestController@RequestMapping(\"大众/login\"大众)public class LoginController {@RequestMapping(\公众/name\"大众)public Map showName(){String name = SecurityContextHolder.getContext().getAuthentication().getName();//得到上岸人账号Map map=new HashMap<>();map.put(\公众loginName\公众, name);return map;}}
(2)创建loginService.js
//做事层app.service('loginService',function($http){//读取列表数据绑定到表单中this.showName=function(){return $http.get('../login/name.do');}});
(3)创建indexController.js
//首页掌握器app.controller('indexController',function($scope,loginService){$scope.showName=function(){loginService.showName().success(function(response){$scope.loginName=response.loginName;});}});
(5)修正home-index.html 引入js
<script type=\"大众text/javascript\"大众 src=\"大众plugins/angularjs/angular.min.js\公众></script><script type=\"大众text/javascript\"大众 src=\"大众js/base.js\"大众></script><script type=\"大众text/javascript\公众 src=\"大众js/service/loginService.js\"大众></script><script type=\"大众text/javascript\"大众 src=\"大众js/controller/indexController.js\"大众></script>
指令,调用方法查询上岸名
<body ng-app=\"大众pinyougou\"大众 ng-controller=\"大众indexController\公众 ng-init=\公众showName()\"大众>
显示用户名
<span class=\"大众name\"大众>{{loginName}}</span>
5.2.3退出登录
设置退出登录后的跳转地址
<beans:bean id=\"大众requestSingleLogoutFilter\"大众 class=\公众org.springframework.security.web.authentication.logout.LogoutFilter\"大众> <beans:constructor-arg value=\"大众http://localhost:9100/cas/logout?service=http://localhost:9103\"大众/> ........ </beans:bean>
退出登录后,跳转到网站首页
<span class=\"大众safe\公众> <a href=\"大众/logout/cas\"大众>退出登录 </a></span>
附录A. Spring Security 内置过滤器表
别名Filter 类
CHANNEL_FILTERChannelProcessingFilter
SECURITY_CONTEXT_FILTERSecurityContextPersistenceFilter
CONCURRENT_SESSION_FILTERConcurrentSessionFilter
LOGOUT_FILTERLogoutFilter
X509_FILTERX509AuthenticationFilter
PRE_AUTH_FILTERAstractPreAuthenticatedProcessingFilter 的子类
CAS_FILTERCasAuthenticationFilter
FORM_LOGIN_FILTERUsernamePasswordAuthenticationFilter
BASIC_AUTH_FILTERBasicAuthenticationFilter
SERVLET_API_SUPPORT_FILTERSecurityContextHolderAwareRequestFilter
JAAS_API_SUPPORT_FILTERJaasApiIntegrationFilter
REMEMBER_ME_FILTERRememberMeAuthenticationFilter
ANONYMOUS_FILTERAnonymousAuthenticationFilter
SESSION_MANAGEMENT_FILTERSessionManagementFilter
EXCEPTION_TRANSLATION_FILTERExceptionTranslationFilter
FILTER_SECURITY_INTERCEPTORFilterSecurityInterceptor
SWITCH_USER_FILTERSwitchUserFilter