I am passing JVM parameter as -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2. But in code ,I am explicitly getting the SSL context object as
SSLContext sc = null;
sc = SSLContext.getInstance("TLS");.
Will the TLS version be highest version (1.2) in this case, or i need to explicitly get the TLS version as
sc = SSLContext.getInstance("TLSv1.2");
to support TLS version 1.2