技术分享 CAS单点登录 服务端配置 查看内容

cas 入门之三:cas 之http 部署(CAS取消https方法配置)

老高 | 发布于 2017-05-05 12:07| 浏览()| 评论() | 收藏() | 点赞() | 打印

摘要: cas的https部署方式很复杂,可以参见如下进行http部署:

cas的https部署方式很复杂,可以参见如下进行http部署。

详细配置修改如下:

1、WEB-INF/deployerConfigContext.xml

<bean class = "org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler" p:httpClient-ref = "httpClient" />

增加参数 p:requireSecure="false" ,是否需要安全验证,即 HTTPS , false 为不采用 如下:

<bean class = "org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler" p:httpClient-ref = "httpClient" p:requireSecure= "false" />

2、WEB-INF/spring-configuration/ticketGrantingTicketCookieGenerator.xml 

修改 p:cookieSecure="true" 为 p:cookieSecure=" false " , 即不需要安全 cookie

如下部分:

<bean id = "ticketGrantingTicketCookieGenerator" class = "org.jasig.cas.web.support.CookieRetrievingCookieGenerator"
   p:cookieSecure = " false "
   p:cookieMaxAge = "-1"
   p:cookieName = "CASTGC"
   p:cookiePath = "/cas" />

 3、WEB-INF\spring-configuration\warnCookieGenerator.xml

修改 p:cookieSecure="true" 为 p:cookieSecure=" false " , 即不需要安全 cookie

结果如下:

<bean id = "warnCookieGenerator" class = "org.jasig.cas.web.support.CookieRetrievingCookieGenerator"
   p:cookieSecure = " false "
   p:cookieMaxAge = "-1"
   p:cookieName = "CASPRIVACY"
   p:cookiePath = "/cas" />


发表评论(对文章涉及的知识点还有疑问,可以在这里留言,老高看到后会及时回复的。)

表情