springboot新建项目pom.xml文件第一行报错的解决

springboot新建项目pom.xml文件第一行报错

新建一个测试项目

发现创建完毕pom.xml文件报错,提示

Description Resource Path Location Type

Unknown pom.xml /demo line 1 Maven Configuration Problem

下面是文件



4.0.0

org.springframework.boot
spring-boot-starter-parent
2.1.5.RELEASE
 

com.example
demo
0.0.1-SNAPSHOT 
demo
Demo project for Spring Boot

1.8



org.springframework.boot
spring-boot-starter-web


org.springframework.boot
spring-boot-starter-test
test





org.springframework.boot
spring-boot-maven-plugin



检查完毕发现是版本问题,改成2.0.0.RELEASE就不会报错

或者 

解决这个问题只需要

在pom.xml 文件中的 properties 加入maven jar 插件的版本号,如下所示:

3.1.1

主要原因是2.1.5.RELEASE 升级到了。3.1.2 造成的问题,有些IDE插件不兼容的问题造成的。 

springboot创建过程中pom.xml报错

如下图:pom.xml有红叉,但是pom.xml中没有错误,并且项目上有红色感叹号

springboot新建项目pom.xml文件第一行报错的解决_第1张图片

问题出现原因

当在pom.xml中加入依赖时,会自动下载依赖的jar包,在这过程中,如果出现异常,比如手动停止,断网,关闭eclipse,会导致jar包下载中断,但是在重新构建时不会自动重新下载,此时会由于缺少jar包导致上述问题:

解决办法

1. 进入build path中,查看有哪些jar包有红叉。

springboot新建项目pom.xml文件第一行报错的解决_第2张图片

2. 找到相应jar包对应的.lastUpdated文件,然后删除掉。

springboot新建项目pom.xml文件第一行报错的解决_第3张图片

3. 选择项目,右键选择maven,然后选择update project,此时就会重新下载

springboot新建项目pom.xml文件第一行报错的解决_第4张图片

如果还是不行,就执行终极大法,自己手动下载所需依赖包,然后通过命令将依赖包安装到仓库中。

举个 栗子:

mvn install:install-file -DgroupId=com.dtwave.dsource -DartifactId=dsource-spi -Dversion=1.1.0-SNAPSHOT -Dpackaging=jar -Dfile=/Users/lcc/Desktop/dsource-spi-1.1.0-SNAPSHOT.jar

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

你可能感兴趣的:(springboot新建项目pom.xml文件第一行报错的解决)