目录
3 出错类型三(XXXMapper.xml中SQL语句语法问题)
前言:
最近用 SpringBoot 写项目的时候,写 Dao 层测试利用 MyBatis 访问数据库遇到了 bug ,困扰了一两天,因此记录一下。
1 出错类型一(连接MySQL失败)
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Access denied for user 'root'@'127.0.0.1' to database 'db_onlineexam'
这个问题巨坑,笔者检查了很多次 XXXMapper.xml 的 sql 语句以及电脑主机的 mysql 密码,确认无误,但一直都报这个错误,在网上查了很多资料,都没有成功解决这个bug。最后笔者重新安装 MySQL ,结果问题解决。。。
MySQL安装传送门:Win10 系统 MySQL && Navicat Premium12 安装教程_navicat安装-CSDN博客
2 出错类型二(MySQL密码错误)
### Cause: org.springframework.jdbc.CannotGetJ