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.tongwebgroupId>
            <artifactId>tongweb-embedartifactId>
            <version>7.0.E.4_P2version>
            <scope>systemscope>
            <systemPath>${project.basedir}/lib/tongweb-embed-7.0.E.4_P2.jarsystemPath>
        dependency>
        
       <plugin>
          <groupId>org.springframework.bootgroupId>
          <artifactId>spring-boot-maven-pluginartifactId>
          <configuration>
            
          	<includeSystemScope>trueincludeSystemScope>
            
            <classifier>execclassifier>
          configuration>
      plugin>

你可能感兴趣的:(springboot,maven,spring,boot)