为什么我找不到 SSL 握手的信任库?
我在客户端使用Spring RESTTemplate来调用REST端点。在这种情况下,客户端是一个Spring应用程序,Tomcat是servlet容器。
我在连接到HTTPS端点时遇到问题。我收到一个错误,指示它找不到指向信任库的有效路径。我在哪里可以指定这一点?这是在容器级别还是在应用程序配置(Spring)级别完成的?
堆栈跟踪:
org.springframework.web.client.ResourceAccessException: I/O error:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException:
unable to find valid certification path to requested target;
nested exception is javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException:
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException:
unable to find valid certification path to requested target
org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:330)
org.springframework.web.client.RestTemplate.execute(RestTemplate.java:292)
org.springframework.web.client.RestTemplate.postForObject(RestTemplate.java:227)