I came accross this issue when updating to openjdk-1.8.0_275 . Disabling "RSASSA-PSS" in java.security resolved the problem for me.
Open ${JAVA_HOME}/jre/lib/security/java.security
and find jdk.certpath.disabledAlgorithms
add RSASSA-PSS
to the end of the list:
jdk.tls.disabledAlgorithms=SSLv3, RC4, DES, MD5withRSA, DH keySize < 1024,
EC keySize < 224, 3DES_EDE_CBC, anon, NULL, RSASSA-PSS
I've also seen other people having to disable TLS1.3
in tomcat but I didn't need to.
note: This should be a temporary work around. Supporting and using TLSv1.3 is the ideal scenario - for me that's not possible right now due to restrictions from my client.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…