springboot使用本地Jar包

方式一:将jar包安装到maven本地仓库

命令
mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed -Dversion=7.0.E.4_P2 -Dfile=/E:/myProject/EexcelDownloadTest/src/main/resources/lib/tongweb-embed-7.0.E.4_P2.jar -Dpackaging=jar
参数解析:
  • Dfile:插件包的位置
  • DgroupId:插件在maven仓库目录标识
  • DartifactId:插件在maven仓库唯一标识
  • Dversion:插件版本号
  • Dpackaging:插件包类型
  • DgeneratePom=true 生成.pom文件

方式二:直接引入本地jar包

        <dependency>
            <groupId>com.tongweb</groupId>
            <artifactId>tongweb-embed</artifactId>
            <version>7.0.E.4_P2</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/lib/tongweb-embed-7.0.E.4_P2.jar</systemPath>
        </dependency>
        
       <plugin>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-maven-plugin</artifactId>
          <configuration>
            <!--本地包导入配置-->
          	<includeSystemScope>true</includeSystemScope>
            <!--自定义分类器配置,防止父子项目打包失败-->
            <classifier>exec</classifier>
          </configuration>
      </plugin>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值