idea Project ‘org.springframework.boot:spring-boot-starter-parent:1.5.15.RELEASE‘ not found

IDEA搭建spring-boot maven报错
idea Project ‘org.springframework.boot:spring-boot-starter-parent:1.5.15.RELEASE’ not found
解决:
1)安装了Spring Assistant插件:
idea Project ‘org.springframework.boot:spring-boot-starter-parent:1.5.15.RELEASE‘ not found_第1张图片
2)因为RELEASE版本是不稳定的,于是需要指定spring的仓库,在pom.xml后面添加如下代码,然后保存pom.xml文件,就会重新从repo.spring.io中引入jar包

	<repositories>
        <repository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/libs-snapshot</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/libs-snapshot</url>
        </pluginRepository>
    </pluginRepositories>

重新Reimport之后更新成功:问题解决。

你可能感兴趣的:(杂七杂八,intellij,idea)