got java.security.InvalidAlgorithmParameterException: trustAnchors 参数在使用 cas 时必须为非空

2022-09-04 01:52:50

我们在使用cas的tomcat下的应用程序中得到了以下异常。

java.security.InvalidAlgorithmParameterException: trustAnchors 参数必须为 non-empty

当我谷歌搜索它时,我发现了一些猜测和解决方案,但没有人可以帮助我。

这是我们tomcat服务器的一部分.xml文件:

<Connector SSLEnabled="true" clientAuth="false" keystoreFile="conf/.keystore" maxThreads="150" port="8443" protocol="HTTP/1.1" scheme="https" secure="true" sslProtocol="TLS"/>

我们指向生成的密钥库。


答案 1

此奇怪的错误消息通常意味着您指定的信任库未在您所说的位置找到。


答案 2