我最近開始學習彈簧,並且一開始就卡住了。 在教程中,我遵循的YouTube上它說我必須安裝maven,並從maven我可以安裝彈簧, 我已經安裝了maven,現在我想從它安裝Spring框架。 聽起來很簡單。據我所知,maven從其存儲庫和下載搜索spring框架。Java - 從maven安裝Spring
但當我嘗試搜索的依賴,我沒有看到dispalyed我,當我搜索作爲本教學中「springframework的」任何依賴。
無處不在我google,他們說maven索引必須在啓動時更新,更新過程在我啓動eclipse時開始,但是它沒有完成/結束。
這是我的pom.xml文件,
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.caveofprogramming.spring.test</groupId>
<artifactId>testprog</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>testprog</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
有你同樣的問題出日食(由MVN指令)? – sgrillon
我在Windows上運行這個,所以沒有在命令行中嘗試 –