其他分享
首页 > 其他分享> > 启动报错 Unable to load authentication plugin 'caching_sha2_password'.

启动报错 Unable to load authentication plugin 'caching_sha2_password'.

作者:互联网

mysql 的driver版本太低,更改高点的版本。

如果是8.0以上的版本,driver驱动也需要更改。

<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>8.0.27</version>
</dependency>

驱动修改为:

com.mysql.cj.jdbc.Driver

标签:load,sha2,8.0,更改,driver,报错,版本,mysql,驱动
来源: https://www.cnblogs.com/herojava/p/15611501.html