开发者

Springboot中Dependency not found解决方案

开发者 https://www.devze.com 2023-11-19 10:52 出处:网络 作者: 364.99°
目录问题描述解决方案systemPathmvn install问题描述 今天在弄一个项目的依赖的时候,easyexcel 的依赖就是下载不了,虽然我的 Maven 配置没问题。
目录
  • 问题描述
  • 解决方案
    • systemPath
    • mvn install

问题描述

今天在弄一个项目的依赖的时候,easyexcel 的依赖就是下载不了,虽然我的 Maven 配置没问题。

依赖:

Springboot中Dependency not found解决方案

Springboot中Dependency not found解决方案

Maven 配置:

Springboot中Dependency not found解决方案

Springboot中Dependency not found解决方案

我切换了几个版本,也无法从镜像下载,甚至开了加速器,换回默认镜像下载都不行。

解决方案

systemPath

这个方案比较简单,如果这个方案报错,再用下面的解决方案

既然网上下载 jar 包不行,那我就从本地引入 jar 包,其步骤如下:

https://mvnrepository.com/ 网站下载所需 jar 包

Springboot中Dependency not found解决方案

Springboot中Dependency not found解决方案

项目js根目录下新建 lib 文件夹(当然,名字随便取都可以),把下载好的 jar 编程客栈包放进去即可

Springboot中Dependency not found解决方案

打开 pom.XML 文件,修改 <dependency> 配置如下:

            <dependency>
                <groupId>com.alibaba</groupId>
                <artifactId>3.0.5</artifactId>
                <version>${easyexcel.version}</version>
       wgoEddeP         <scope>system</scope>
                <systemPath>${project.basedir}/lib/easyexcel-3.0.5.jar</systemPath>
            </dependency>

刷新 Maven ,成功引入

这个方案可能会报:

  • dependencyManagement.dependencies.dependency.systemPath’ for com.alibaba:3.0.5:jar refers to a non-existing file

    那就走 mvn install 的方案

  • 如果在 clean/build/package 的时候还是报找不到 jar 包,可以把 ${project.basedir} 改成 ${pom.basedir}

mvn install

https://mvnrepository.com/ 网站下载所需 jar 包

Springboot中Dependency not found解决方案

Springboot中Dependency not found解决方案

将本地 jar 包安装到 Maven 仓库:

mvn install:install-file -Dfile=D:\Applications\MyRepository\easyexcel-3.0.5.jar 

如果报错:一般情况下,只要你下载的依赖没问题,直接用上面的指令就可以了

Springboot中Dependency not found解决方案

就用下列指令:

mvn install:install-filephp -Dfile=D:\Applications\MyRepository\easyexcel-3.0.5.jar -DgroupId=com.alibaba -DartifactId=easyexcel -Dversion=3.0.5 -Dpackaging=jar

指令说明:

  • -Dfile= jar 在本地的绝对路径
  • -DgroupId= jar 包的 groupId
  • -DartifactId= jar 包的 artifactId
  • -Dversion= jar 包的 version
  • -Dpackaging= 打包方式

修改 <dependency>www.devze.com 配置:

            <dependency>
                <groupId>com.alibaba</groupId>
                <artifactId>easyexcel</artifactId>
                <version>3.0.5</version>
            </dependency>

刷新 Maven

到此这篇关于Springboot中Dependency not found解决方案的文章就介绍到这了,更多相关Springboot Dependency not found内容请搜索编程客栈(www.devze.com)以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程客栈(www.devze.com)!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号