Hashicorp Vault - Unrecognized SSL message, plaintext connection? [duplicate]
问题 This question already has answers here : Unrecognized SSL message, plaintext connection? Exception (19 answers) Closed 4 years ago . I am trying to setup a java application to connect to Hashicorp's vault and authenticate using the TLS backend (using an SSL Certificate) I am using apache httpcomponents 4.4 as follows: final CloseableHttpClient httpclient = HttpClients.custom().setSSLContext(mySslContext).build(); final CloseableHttpResponse response = httpclient.execute(myRequest) where