我尝试在Square 的 MockWebServer上启用 SSL,以模拟我的 Android 应用程序中的所有 Web 服务调用。我想启用 SSL 来获得与真实条件下相同的错误。我不想为测试禁用 SSL 或实现忽略 SSL 的 HTTPClient。
在每个请求中,我都会得到这个javax.net.ssl.SSLPeerUnverifiedExceptionecxeption:
org.springframework.web.client.ResourceAccessException: I/O error on POST request for "https://localhost:42451/api/blabla": No peer certificate; nested exception is javax.net.ssl.SSLPeerUnverifiedException: No peer certificate
看来我需要为 MockWebServer 设置一个证书。但是我不知道怎么...
这就是我尝试启用 SSL 的方式:
SSLContext sslContext = new SslContextBuilder(InetAddress.getLocalHost().getHostName()).build();
server.useHttps(sslContext.getSocketFactory(), true);
或者:
SSLContext sslContext = SSLContext.getInstance("SSL");
sslContext.init(null, null, null);
server.useHttps(sslContext.getSocketFactory(), false);
任何人都可以帮忙吗?