一、开发过程中遇到的问题
1、如何引入Free Spire.Doc(开源)jar包
(引入包使用lib方式,maven私服会打包错误)
<dependency> <groupId>e-iceblue</groupId> <artifactId>spire.pdf.free</artifactId> <version>5.2.0</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/resources/libs/Spire.Doc.jar</systemPath> </dependency>
<build> <plugins> <!-- spring boot maven 打包插件 --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> <addResources>true</addResources> <includeSystemScope>true</includeSystemScope> </configuration> <executions>