概述
1、在项目resources目录下创建lib目录,将jar包复制进去
2、pom.xml添加引入jar包依赖
<dependency>
<groupId>com</groupId>
<artifactId>aspose-words-18.10-jdk16</artifactId>
<version>18.10</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/aspose-words-18.10-jdk16.jar</systemPath>
</dependency>
3、plugins标签中添加如下配置信息
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 主方法所在路径 -->
<mainClass>com.pingchuan.polish.web.Application</mainClass>
<includeSystemScope>true</includeSystemScope>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
最后
以上就是丰富饼干为你收集整理的SpringBoot 将外部引入的Jar包打进Jar包中的全部内容,希望文章能够帮你解决SpringBoot 将外部引入的Jar包打进Jar包中所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复