java - Spring boot 在pom.xml有个错误
PHP中文网
PHP中文网 2017-04-18 09:52:46
0
1
268

PHP中文网
PHP中文网

认证高级PHP讲师

全部回复(1)
阿神

因为这个是SNAPSHOT,maven的中央仓库没有,所以你要加上spring的maven仓库

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.1.BUILD-SNAPSHOT</version>
</parent>

<repositories>
    <repository>
        <id>spring-snapshots</id>
        <name>Spring Snapshots</name>
        <url>https://repo.spring.io/libs-snapshot</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板