目前,我有一台Verison 9.3.x嵌入式Jetty服务器,可以通过端口8080和8443完美地提供websockets通信,以实现安全通信。 我需要禁用主机名和证书的验证,但我无法禁用它。
我使用的方法是setTrustAll和setEndpointIdentificationAlgorithm(null),但仍然激活了主机名验证。 sslContextFactory.setTrustAll(真); sslContextFactory.setEndpointIdentificationAlgorithm(NULL); 怎么能避免呢?