IntelliJIDEA如何引⼊本地jar包
通过添加Libraries的⽅式引⼊:
1、⾸先在根⽬录下创建⼀个 libs 的⽬录
2、打开 File -> Project Structure
3、单击 Libraries  -> "+" -> "Java" -> 选择我们导⼊的项⽬主⽬录,点击OK
4、注意:在弹出的⽅框中点击“Cancel”,取消将其添加到Module中。
5、libs⽬录创建成功,删除⽬录中添加进来的多余内容,重新添加需要的jar包
6、重新添加需要的jar包
7、引⼊jar包:Modules -> 项⽬ -> “Dependencies”,点击“+” -> “Library”,将刚才创建成功的Library⽬录加⼊
8、jar包导⼊成功!
9、如果要将引⼊的jar包打包到war中,需要在pom⽂件中添加以下配置+
<!-- 引⽤本地jar包 -->
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>16.8.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/aspose-words-16.8.0-jdk16.jar</systemPath>
</dependency>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-cells</artifactId>
maven打包本地jar包
<version>8.5.2</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/aspose-cells-8.5.2.jar</systemPath>
</dependency>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-slides</artifactId>
<version>15.9.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/aspose.slides-15.9.0.jar</systemPath>
</dependency>
<!-- 将本地jar包打到war中 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>compile</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/lib</outputDirectory>                <includeScope>system</includeScope>
</configuration>
</execution>
</executions>
</plugin>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。