当前位置:   article > 正文

SpringBoot启动报错:HikariPool-1 - Exception during pool initialization._hikaripool-1 - failed to create/setup connection:

hikaripool-1 - failed to create/setup connection: communications link failur

SpringBoot启动报错:HikariPool-1 - Exception during pool initialization.
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

原因:jdbc连接失败

解决办法:
1、仔细检查username、password、url中IP地址、端口号等是否正确,特别是IP地址更换环境容易忘记修改。
2、如果你使用的是SpringBoot 2.0以上版本,应配置为driver‐class‐name: com.mysql.cj.jdbc.Driver

参考配置文件application.yml:

spring:
  datasource:
    username: root
    password: 123456
# url: jdbc:mysql://10.21.14.105:3307/JDBC?characterEncoding=utf-8&&useSSL=false&&serverTimezone=UTC
# 1、serverTimezone是配置时间区域
# 2、url 配置规则 jdbc:mysql:// + ip地址 + 端口 / 数据库名字 ? 字符编码 && 是否使用SSL && 时间区域
# 3、useSSL MySQL在高版本需要指明是否进行SSL连接
    url: jdbc:mysql://10.21.14.105:3307/JDBC  # mysql04
    
#    注意SpringBoot版本在2.0以前和2.0以后的配置有一些不同
#    driver-class-name: com.mysql.jdbc.Driver SpringBoot 2.0以前的版本
    driver‐class‐name: com.mysql.cj.jdbc.Driver

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/159721
推荐阅读
相关标签
  

闽ICP备14008679号