我在Netbeans有一個maven web項目。 這些都是在pom.xml無法下載spring-web和spring-webmvc依賴關係
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
</dependencies>
依賴當我選擇下載聲明依賴性從依賴它下載一切除了彈簧網絡4.3.5.RELEASE.jar和彈簧webmvc-4.3.5.RELEASE.jar。每次我做它停止在4%,它說它已完成。
那麼我最終通過mozilla下載它們並手動安裝罐子。不過我不明白他們沒有下載,我試圖重新啓動netbeans和互聯網連接。奇怪 – Maver
Maven檢查是否必須再次下載'jar',因爲可能修復了一個錯誤。因此Maven會比較本地文件和遠程文件的散列值。如果哈希匹配,他認爲沒有任何變化。散列比較可能需要4%。 –
嘗試從Maven本地存儲庫中刪除目錄org/springframework/spring-web和org/springframework/spring-webmvc,然後在您的項目中重新啓動maven install。 –