目录
去掉https验证
- cas默认是采用https模式的,我们没有配置证书,所以去掉https验证取消https的过滤,让http协议也能访问
- 4.0.0 版本一共需要修改三个地方
1. 修改deployerConfigContext.xml添加p:requireSecure=”false”
- 找到tomcat下
cas/WEB-INF/deployerConfigContext.xml
// 找到如下bean配置
<bean class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler"
p:httpClient-ref="httpClient"/>
// 添加参数p:requireSecure="false"
// 修改后为:
<bean id="proxyAuthenticationHandler"
class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler"
p:httpClient-ref=