问题:mysql数据库ssl连接,要支持TLS 1.2及以上版本。
现象:日志报错for Code:[DBUtilErrorCode-10], Description:[连接数据库失败. 请检查您的 账号、密码、数据库名称、IP、Port或者向 DBA 寻求帮助(注意网络环境).]. - 具体错误信息为:TLS version used does not meet minimal requirements for this server. Please use a higher TLS version and retry. - java.sql.SQLException: TLS version used does not meet minimal requirements for this server. Please use a higher TLS version and retry.
解决:数据源连接串模式 jdbc串后面加?useSSL=true&enabledTLSProtocols=TLSv1.2jdbc:mysql://host:3306/DataBase?useSSL=true&enabledTLSProtocols=TLSv1.2