CAS 服务器端取消 https的配置 方法
?
需要修改的配置文件有:
WEB-INF/deployerConfigContext.xml?、?WEB-INF/spring-configuration/ticketGrantingTicketCookieGenerator.xml、
WEB-INF\spring-configuration\warnCookieGenerator.xml
?
詳細配置修改如下:
1?、?WEB-INF/deployerConfigContext.xml
????在<?bean?class?=?"org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler"?????p:httpClient-ref?=?"httpClient"?/>
增加參數(shù)?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
結(jié)果如下:
< bean id = "warnCookieGenerator" class = "org.jasig.cas.web.support.CookieRetrievingCookieGenerator" p:cookieSecure = "false " p:cookieMaxAge = "-1"p:cookieName = "CASPRIVACY" p:cookiePath = "/cas" />?
? ??
轉(zhuǎn)載于:https://www.cnblogs.com/lucky2u/p/3986033.html
總結(jié)
以上是生活随笔為你收集整理的CAS 服务器端取消 https的配置 方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Open Source: 开源软件许可的
- 下一篇: linux系统回收站功能的实现