Idea搭建SpringBoot时,SpringApplication.run报错

Posted 沙漠里的羊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Idea搭建SpringBoot时,SpringApplication.run报错相关的知识,希望对你有一定的参考价值。

一番百度:

spring-boot-starter-parent引用失败

原因:因为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>

以上是关于Idea搭建SpringBoot时,SpringApplication.run报错的主要内容,如果未能解决你的问题,请参考以下文章

IDEA使用Gradle快速搭建SpringBoot项目

我用idea搭建springboot项目,多项目时无法访问JSP页面

使用IDEA快速搭建Springboot项目

idea快速搭建springboot项目

使用idea+springboot+Mybatis搭建web项目

idea搭建springboot