Java Maven 存储库中不存在 Spring Boot 快速入门?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/23113871/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-13 20:47:44  来源:igfitidea点击:

Spring Boot quickstart does not exist in maven repository?

javaspringmaven

提问by Rolando

Looking at Spring Boot here:

在此处查看 Spring Boot:

http://projects.spring.io/spring-boot/#quick-start

http://projects.spring.io/spring-boot/#quick-start

It appears the "Quick Start" says to include:

看来“快速入门”说包括:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.0.1.RELEASE</version>
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

The following are my current repositories:

以下是我当前的存储库:

<repositories>
    <repository>
        <id>spring-milestones</id>
        <url>http://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>
<pluginRepositories>
    <pluginRepository>
        <id>spring-milestones</id>
        <url>http://repo.spring.io/milestone</url>
    </pluginRepository>
</pluginRepositories>

I get a connection timed out exception and when I actually look at the repository...

我收到连接超时异常,当我实际查看存储库时...

http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-parent/

There is no 1.0.1! Is there some other repository that the pom.xml should contain?

没有 1.0.1!pom.xml 是否应该包含其他一些存储库?

Error:

错误:

Project build error: Non-resolvable parent POM: Failure to transfer org.springframework.boot:spring-boot-starter-parent:pom:1.0.0.RC5 from http://repo.spring.io/
 milestone was cached in the local repository, resolution will not be reattempted until the update interval of spring-milestones has elapsed or updates are forced. 
 Original error: Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:1.0.0.RC5 from/to spring-milestones (http://repo.spring.io/
 milestone): connection timed out to http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-parent/1.0.0.RC5/spring-boot-starter-
 parent-1.0.0.RC5.pom and 'parent.relativePath' points at wrong local POM

采纳答案by Jigar Joshi

It existsin central repository add following to your pom.xml

存在于中央存储库中,将以下内容添加到您的 pom.xml

<project ...>
<repositories>
    <repository>
      <id>central</id>
      <url>http://central.maven.org/maven2/</url>
    </repository>
 </repositories>
</project>