我已经设置了 fiddler 以通常的方式解密 HTTPS 流量。
我的java应用程序在没有fiddler的情况下成功调用了web服务。
一旦我设置代理并拨打电话,我就会收到以下异常。
我在 Spring Boot 应用程序中设置了代理,如下所示:
System.setProperty("http.proxyHost", "127.0.0.1");
System.setProperty("https.proxyHost", "127.0.0.1");
System.setProperty("http.proxyPort", "8888");
System.setProperty("https.proxyPort", "8888");
sun.security.provider.certpath.SunCertPathBuilderException:无法找到请求目标的有效证书路径
长风秋雁
相关分类