最常见错误:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure,如下图:
定位报错位置:
从代码上看,前一步说明jdbc驱动加载成功了,到了这一步报错,无非是传进去的是参数问题,没报用户和密码错误那就是url参数的问题。
本例中原来的参数是 jdbc:mysql://xx.xx.xx.xx:3306/qyhua,改成以下参数,问题解决。文章来源:https://www.toymoban.com/news/detail-857423.html
jdbc:mysql://xx.xx.xx.xx:3306/qyhua?timeZone=TMC&useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useTimezone=true&serverTimezone=GMT%2B8"
总结:这种小错误非常见,各种连接池底层也是使用jdbc加载,它们报错通过也是url参数问题。文章来源地址https://www.toymoban.com/news/detail-857423.html
到了这里,关于常见错误:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure解决的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!