idea新建springboot项目pom文件报错如何解决

发布时间:2023-05-05 15:18:32 作者:iii
来源:亿速云 阅读:104

本文小编为大家详细介绍“idea新建springboot项目pom文件报错如何解决”,内容详细,步骤清晰,细节处理妥当,希望这篇“idea新建springboot项目pom文件报错如何解决”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

新建springboot项目的问题

使用idea,一路next,到最后生成项目

然后pom文件报错

我特意换了一个全新的maven,发现是因为jar拉不下来,就配置了国内镜像

找到maven ,conf 打开 settings.xml。在mirrors里面写入

<!-- 阿里云镜像 -->
	<mirror>
		<id>alimaven</id>
		<name>aliyun maven</name>
		<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
		<mirrorOf>central</mirrorOf>
	</mirror>
	<mirror>
		<id>central</id>
		<name>Maven Repository Switchboard</name>
		<url>http://repo1.maven.org/maven2/</url>
		<mirrorOf>central</mirrorOf></mirror>
	<mirror>
		<id>repo2</id>
		<mirrorOf>central</mirrorOf>
		<name>Human Readable Name for this Mirror.</name>
		<url>http://repo2.maven.org/maven2/</url>
	</mirror>
	
	<mirror>
		<id>ibiblio</id>
		<mirrorOf>central</mirrorOf>
		<name>Human Readable Name for this Mirror.</name>
		<url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
		</mirror>
<!-- 中央仓库在中国的镜像 -->
	<mirror>
		<id>maven.net.cn</id>
		<name>oneof the central mirrors in china</name>
		<url>http://maven.net.cn/content/groups/public/</url>
		<mirrorOf>central</mirrorOf>
	</mirror>

然后发现还是有点问题,有些拉不下来。

继续设置idea,打开设置,搜索maven

idea新建springboot项目pom文件报错如何解决

将上面的勾打上

然后在VM Options下面输入

-Dmaven.wagon.http.ssl.insecure=true
-Dmaven.wagon.http.ssl.allowall=true
-Dmaven.wagon.http.ssl.ignore.validity.dates=true

然后点击最右面maven,重新安装一下

(拉完jar之后再把勾去掉,还原)

idea新建springboot项目pom文件报错如何解决

此时已经解决了我所有报错的问题,然后启动项目是启动不起来的,因为没有web

继续在pom加入spring-boot-starter-web

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

启动类中加入hello代码校验

idea新建springboot项目pom文件报错如何解决

启动,浏览器输入http://localhost:8080/hello

idea新建springboot项目pom文件报错如何解决

创建Springboot之后pom.xml文件报错解决

记录创建项目遇到的一个问题(Maven相关)

通过IDEA 创建Springboot项目之后,pom.xml 在以下代码中报错

提示spring-boot-starter-parent not found

<parent>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-parent</artifactId>
   <version>2.4.4</version>
   <relativePath/> 
</parent>

我自己在网上查到解决方法有两个:

其实就是一个。不管怎么reload,或者是download source都没用(还试过修改版本号),然后我就重启,果然重启就好了

遇到的另一个问题,也是提醒我spring-boot-maven-plugin not found

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>

解决办法:

添加与上面spring-boot-starter-parent相对应的版本号。我上面用的是2.4.4,这里我也就尝试了一下2.4.4,结果真的好了

如果报错还是没解决的话也可以尝试 reload project 或者 重启idea 

读到这里,这篇“idea新建springboot项目pom文件报错如何解决”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注亿速云行业资讯频道。

推荐阅读:
  1. 使用JetBrains怎么对IDEA进行优化
  2. 使用IDEA进行打包时代码出现报错如何解决

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

idea pom springboot

上一篇:RNN怎么实现时间序列预测

下一篇:Python中怎么使用sklearn进行特征降维

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》