问题
I am setting up my web application in JDK11 runtime environment. I am able to bring my application server up in JDK8 runtime enviroment but getting below exception after switching to JDK11 enviroment.
Exception : javax.net.ssl.SSLHandshakeException: Invalid ECDH ServerKeyExchange signature
For SSlHandshake I am using TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 cipher suite Algorithm. I am suspecting that this algorithm is not supported by JDK11(https://bugs.openjdk.java.net/browse/JDK-8209965). I am stucked at this point on migrating my application. Kindly help me regarding this.
Thanks.
来源:https://stackoverflow.com/questions/56109527/getting-javax-net-ssl-sslhandshakeexception-in-jdk11