赞
踩
记录一次因数据库连接设置导致的服务器重启后第一次登录都fail的异常。
Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.alibaba.druid.pool.GetConnectionTimeoutException: wait millis 11, active 0, maxActive 20, creating 1, createElapseMillis 47
url: jdbc:mysql://localhost:3306/XXXXXX?useSSL=false&serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&allowPublicKeyRetrieval=true
正确如下
url: jdbc:mysql://localhost:3306/XXXXXX?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&useSSL=false&allowPublicKeyRetrieval=true
useSSL起初没有设置,发现过这个问题,于是添加到图一位置,再测试发现还是有问题,更改位置后bug修复。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。