解决无法引入 mysql-connector-j 的问题
短信预约 -IT技能 免费直播动态提醒
开发环境
- Windows 10
- Oracle JDK 1.8
- Maven 3.8.8
- IntelliJ IDEA 2022.2.2
问题
在使用 Spring initializr 创建 Spring Boot 项目时,无法引入 mysql-connector-j
这个依赖,报错信息:
com.mysql:mysql-connector-j:jar:unknown was not found in https://maven.aliyun.com/repository/public during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of aliyunmaven has elapsed or updates are forced
pom.xml 文件
// 父依赖 org.springframework.boot spring-boot-starter-parent 2.5.14 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test com.mysql mysql-connector-j 8.0.32 runtime com.baomidou mybatis-plus-boot-starter 3.5.3.1
原因
我使用的 Spring Boot 版本为 2.5.14,该版本使用的 mysql-connector-j
版本为 8.0.29,同时我的依赖是从阿里云的镜像库而不是 Maven 的中央仓库上下载的。我尝试手动引入这个版本。
com.mysql mysql-connector-j 8.0.29 runtime
结果报了同样的错误。也就是说,阿里云镜像仓库可能没有这个版本的 mysql-connector-j
。
解决方法
手动引入高于 8.0.29 版本的 mysql-connector-j
即可解决。
com.mysql mysql-connector-j 8.0.32 runtime
来源地址:https://blog.csdn.net/qq_41834086/article/details/132241656
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341