启动Spring后,连接mysql报错

Posted Pandaly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动Spring后,连接mysql报错相关的知识,希望对你有一定的参考价值。

 

  1. 连接失败,原因是mysql服务未启动

解决方法:启动mysql服务

  方法一:

  • 以管理员身份运行CMD
  • 输入命令:net start mysql

  方法二:

  • 右键计算机-管理-服务和应用程序-服务
  • 右键启动Mysql服务

 

 

  1. 配置的密码正确,但提示拒绝访问:

   解决方法:配置文件中加入SSL=Fasle

spring.datasource.url=jdbc:mysql://localhost:3306/sampledb?useUnicode=true&characterEncoding=utf-8&useSSL=false

 

  1. 提示java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed

 解释方法:

&allowPublicKeyRetrieval=true
spring.datasource.url=jdbc:mysql://localhost:3306/sambledb?useUnicode=true&characterEncoding=utf-8&allowPublicKeyRetrieval=true&useSSL=false

 

以上是关于启动Spring后,连接mysql报错的主要内容,如果未能解决你的问题,请参考以下文章

新手spring整合mybatis报错连接数据库失败

源码安装并且成功启动mysql后输入mysql报错:command not found

Spring数据,MySQL,连接在8小时不活动后死亡

kettle作业连接mysql资源库8小时后报错

PHP连接mysql报错

spring mvc配置方法解释器后,启动Tomcat报错!