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

    技术2022-07-16  82

    IDEA搭建spring-boot maven报错 idea Project ‘org.springframework.boot:spring-boot-starter-parent:1.5.15.RELEASE’ not found 解决: 1)安装了Spring Assistant插件: 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之后更新成功:问题解决。

    Processed: 0.011, SQL: 9