Disabling SSL Certificate Validation in Spring RestTemplate

后端 未结 12 1477
花落未央
花落未央 2020-11-28 20:05

I am having two Spring based web apps A and B, on two different machines.

I want to make a https call from web app A to web app B, however I am using a self-signed c

12条回答
  •  醉话见心
    2020-11-28 20:26

    What you need to add is a custom HostnameVerifier class bypasses certificate verification and returns true

    HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
                public boolean verify(String hostname, SSLSession session) {
                    return true;
                }
            });
    

    This needs to be placed appropriately in your code.

提交回复
热议问题