Java 11.0.11 SQL Server connection error

After upgrading to Zulu JDK 11.0.11, connect to SQL server and prompt the server selected protocol version tls10 is not accepted by client preferences [tls13, tls12]
this is because Java gave up supporting tls1.0, 1.1 and other versions of the algorithm, while the SQL server server was not upgraded to tls1.2
in the downloaded JDK,… Zulu11.43.55-ca-jdk11.0.9.1-win_ Open Java. Security and search JDK. TLS. Disabledalgorithms . This is an unsupported algorithm. Delete tls1.0 to support it

Read More: