【解决报错】Failed to obtain JDBC Connection
程序员文章站
2022-06-23 22:19:01
...
使用springboot与mybatis时,总是遇到数据库无法连接的错误,将解决方法记录如下。
报错:
Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection;
spring.MyBatisExceptionTranslator.translateExceptionIfPossible
ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
(1)发现在application.properties里将密码写错
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/imoocdemo?useUnicode=true&characterEncoding=utf8&useSSL=false
jdbc.username=root
jdbc.password=...
(2)发现忘记数据库密码,且无法通过net start等方法跳过密码验证来修改密码,遂重新安装sql
(3)重装sql并在properties中输入正确的密码后仍连接失败,发现idea中可以增加数据可视化工具,下载driver,并设置时区为UTC后连接成功!
(4)之后再次运行,又遇到无法连接的情况。在jdbc的url中加入时区serverTimezone
的设置后成功!
jdbc.url=jdbc:mysql://localhost:3306/imoocdemo?useUnicode=true&characterEncoding=utf8&useSSL=false&&serverTimezone=CST
因为使用mysql的jdbc驱动最新版(6.0+)时,会因为数据库和系统时区差异引起的无法连接问题。
注:CST代表的是中国上海时间(与北京时间,东八区相同)。
推荐阅读
-
解决Linux下ssh登录后出现 报错 Write failed: Broken pipe 的方法
-
PHP执行Curl时报错提示CURL ERROR: Recv failure: Connection reset by peer的解决方法
-
解决linux下set_loginuid failed opening loginuid报错问题
-
Android添加glide库报错Error: Failed to resolve: com.android.support:support-annotations:26.0.2的解决
-
Failed to check the status of the service报错解决
-
解决小米手机USB安装apk时AS报错:INSTALL_FAILED_USER_RESTRICTED
-
针对maven install 报错:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1 解决方案
-
解决 React-Native mac 运行报错 error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build log
-
Nginx中报错:Permission denied与Connection refused的解决
-
apache启动报错:the requested operation has failed解决办法