com.aspose.words 的包 是 第三方的jar包 引入要先引入jar包所在仓库地址:
<repositories>
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>http://repository.aspose.com/repo/</url>
</repository>
</repositories>
然后引入依赖配置
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>21.1</version>
</dependency>
启动项目没问题 但是打包的时候没这个包
考虑打包的时候引入本地jar包
方案 在pom中配置 适合
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
因为本身项目是
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<includeSystemScope>true</includeSystemScope> 会标红
不适用这个方案
用把jar包引入成本地仓库的方案
使用命令cmd
mvn install:install-file -Dfile=“jar包的位置”(参数一) -DgroupId=groupId(参数二) -DartifactId=artifactId(参数三) -Dversion=version(参数四) -Dpackaging=jar
之后在pom引入就可以了