1.java.sql.SQLException: Connections could not be acquired from the underlying
database!
//无法从基础数据库中获取连接
解决:
1.配置文件有错误
2.数据库驱动 或者数据库未启动或者无权访问
3.项目未引入对应的驱动jar包mysql-connector-java-5.1.6-bin.jar
4.还有使用连接池又使用单独的创建连接,也可能出现异常
2. java.sql.SQLException: Unknown system variable 'tx_read_only
解决: 1.JDBC驱动版本太低
2.数据库版本太低
3.Unknown character set index for field '224' received from server
本质:MySQL驱动和数据库字符集设置不搭配,在url后面加参数(?useUnicode=true&characterEncoding=UTF-8)
4.java.sql.SQLException: Unable to load authentication plugin
'caching_sha2_password'.
本质: 5.7版本是:default_authentication_plugin=mysql_native_password
8.x版本就是:default_authentication_plugin=caching_sha2_password
解决: 将my.ini (隐藏的 programdata文件夹中)的配置改成5.7 就可以了
5.You must reset your password using ALTER USER statement before executing
this statement.
修改一下密码就ok
热门工具 换一换