CAS配置

CAS默认使用的是HTTPS协议,如果使用HTTPS协议需要SSL安全证书(需向特定的机构申请和购买) 。如果对安全要求不高或是在开发测试阶段,可使用HTTP协议。我们这里讲解通过修改配置,让CAS使用HTTP协议。

 

(1)修改cas的WEB-INF/deployerConfigContext.xml  

找到下面的配置

这里需要增加参数p:requireSecure="false",requireSecure属性意思为是否需要安全验证,即HTTPS,false为不采用

(2)修改cas的/WEB-INF/spring-configuration/ticketGrantingTicketCookieGenerator.xml

找到下面配置

参数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

找到下面配置

我们这里将cookieSecure改为false ,  cookieMaxAge 改为3600

 

 

例子

你可以建两个maven的web项目,只需要修改web.xml和pom.xml即可。

pom.xml

 


  4.0.0
  cn.itcast.demo
  casclient_demo1
  0.0.1-SNAPSHOT
  war
  
  
          
          
            org.jasig.cas.client  
            cas-client-core  
            3.3.3
                  
        
        
            javax.servlet
            servlet-api
            2.5  
            provided
        
      

    
      
            
              org.apache.maven.plugins  
              maven-compiler-plugin  
              2.3.2  
                
                  1.7  
                  1.7  
                
            
          
                org.apache.tomcat.maven
                tomcat7-maven-plugin
                
                    
                    9001
                    
                    /
                
            
        
    
  
  

 

 

web.xml

 


    
    
      
      
      
        org.jasig.cas.client.session.SingleSignOutHttpSessionListener  
      
  
      
      
        CAS Single Sign Out Filter  
        org.jasig.cas.client.session.SingleSignOutFilter  
      
      
        CAS Single Sign Out Filter  
        /*  
      
  
      
      
        CASFilter  
        org.jasig.cas.client.authentication.AuthenticationFilter  
          
            casServerLoginUrl  
            http://localhost:9080/cas/login
              
          
        
            
            serverName  
            http://localhost:9001
          
      
      
        CASFilter  
        /*  
      
  
      
      
        CAS Validation Filter  
          
            org.jasig.cas.client.validation.Cas20ProxyReceivingTicketValidationFilter  
          
            casServerUrlPrefix  
            http://localhost:9080/cas
          
        
            
            serverName  
            http://localhost:9001
          
      
      
        CAS Validation Filter  
        /*  
      
  
      
      
        CAS HttpServletRequest Wrapper Filter  
          
            org.jasig.cas.client.util.HttpServletRequestWrapperFilter  
      
      
        CAS HttpServletRequest Wrapper Filter  
        /*  
      
  
      
      
        CAS Assertion Thread Local Filter  
        org.jasig.cas.client.util.AssertionThreadLocalFilter  
      
      
        CAS Assertion Thread Local Filter  
        /*  
      
  
      
    
    

 

 

单点退出登录

地址栏输入  http://localhost:9100/cas/logout 

但我们更希望退出登录后,能自动跳转到某个页面,那如何处理呢?

修改cas系统的配置文件cas-servlet.xml

 

 

改为true后,可以在退出时跳转页面到目标页面,修改index.jsp的退出链接

 

"http://localhost:9100/cas/logout?service=http://www.baidu.com">退出登录

 

CAS服务端数据源设置

 

(1)修改cas服务端中web-inf下deployerConfigContext.xml ,添加如下配置

 

 

 

  

 

 

然后在配置文件开始部分找到如下配置

 


        
                           
                
                
            
              
        
            
        

 

其中

一句是使用固定的用户名和密码,我们在下面可以看到这两个bean ,如果我们使用数据库认证用户名和密码,需要将这句注释掉。

添加下面这一句配置

(3)将以下三个jar包放入webapps\cas\WEB-INF\lib下

CAS服务端界面改造

 

(1)将你项目需要的登陆页login.html拷贝到cas系统下WEB-INF\view\jsp\default\ui 目录下

 

(2)将css  js等文件夹拷贝到  cas目录下

 

(3) 将原来的casLoginView.jsp 改名(可以为之后的修改操作做参照),将login.html改名为casLoginView.jsp 

 

修改页面

编辑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标签

 

 




......


 

 

(3)修改用户名框

 

(4)修改密码框

(5)修改登陆按钮




错误提示

在表单内加入错误提示框

测试:输入错误的用户名和密码,提示是英文。这个提示信息是在WEB-INF\classes目录下的messages.properties文件中

 

authenticationFailure.AccountNotFoundException=Invalid credentials.


authenticationFailure.FailedLoginException=Invalid credentials.

设置国际化为zn_CN  ,修改cas-servlet.xml

 

 

我们需要将此信息拷贝到messages_zh_CN.properties下,并改为中文提示(转码)

 

authenticationFailure.AccountNotFoundException=\u7528\u6237\u4E0D\u5B58\u5728.
authenticationFailure.FailedLoginException=\u5BC6\u7801\u9519\u8BEF.

CAS客户端与SpringSecurity集成

 

(1)引入依赖

  
       org.springframework.security  
       spring-security-cas  
       4.1.0.RELEASE  
     
  
        org.jasig.cas.client  
        cas-client-core  
        3.3.3  
          
              
                org.slf4j  
                log4j-over-slf4j  
              
          

 

(2)修改spring-security.xml



    
    
      
           
          
                   
              
          
          
    
    
      
      
          
          
          
          
      
          
        
      
    
   
    
      
          
      
        
    
        
        
    
        
      
          
              
                  
              
          
          
        
          
              
                  
              
          
         
            
            
      
    
    
         
              
      
          
          
              
          
          
      
      

 

(3)创建UserDetailsServiceImpl      其实是马后炮,因为认证的功能cas提前认证过了,他的作用只是得到用户权限返回。

 

/**
 * 认证类
 */
public class UserDetailServiceImpl implements UserDetailsService {
    @Override
    public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
        //构建角色集合
        List authorities=new ArrayList();
        authorities.add(new SimpleGrantedAuthority("ROLE_USER"));
        return new User(username, ""  , authorities);        
    }
}

复制代码

你可能感兴趣的:(java)