我在Tomcat 8.0上部署CAS 4.2,但我总是失败。我正在关注this guide,以集成LDAP授权。
添加条目有一个步骤
schema/spring-ext.xsd
xsi:schemalocation
。xsd
。
但实际上,xsd
的网址不存在,服务器在启动时无法读取 org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:
Line 64 in XML document from ServletContext resource
[/WEB-INF/deployerConfigContext.xml] is invalid; nested exception is
org.xml.sax.SAXParseException; lineNumber: 64; columnNumber: 45;
cvc-complex-type.2.4.c: The matching wildcard is strict, but no
declaration can be found for element 'ldaptive:ad-authenticator'
。
如果删除该条目,服务器将因错误而失败:
$votes = Vote::with(['project'])
->where('user_id', $user->id)
->select('project_id', DB::raw('count(*) as total'))
->groupBy('project_id')
->get();
是否有人成功部署CAS 4.2.1?