1. 程式人生 > >初始java叢集操作遇到的bug1——Missing artifact jdk.tools:jdk.tools:jar:1.8

初始java叢集操作遇到的bug1——Missing artifact jdk.tools:jdk.tools:jar:1.8

Missing artifact jdk.tools:jdk.tools:jar:1.8


在上一篇中遇到的一個bug!!!記錄下,一般這個應該遇不到,所以如果沒遇到請跳過。

1.圖解錯誤

1.在pom.xml中
在這裡插入圖片描述

2.原因

tools.jar包是JDK自帶的,pom.xml中以來的包隱式依賴tools.jar包,而tools.jar並未在庫中,只需要將tools.jar包新增到jdk庫中即可

3.解決方案

在pom.xml 中新增如下內容:

    <
dependency
>
<groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> <version>1.8</version> <scope>system</scope> <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath> </dependency
>

4.圖解真像

在這裡插入圖片描述

版權宣告:本部落格為記錄本人自學感悟,轉載需註明出處!
https://me.csdn.net/qq_39657909