您好,登錄后才能下訂單哦!
本篇內容主要講解“idea怎么導入jar包”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“idea怎么導入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> <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>
到此,相信大家對“idea怎么導入jar包”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。