pom.xml复制过来的代码报错-Maven expected START_TAG or END_TAG not TEXT (positionTEXT se

场景

编译器:IDEA

在网上看一些小实例,跟着做的时候会复制pom.xml文件的代码来加载依赖包。首先需要确定你复制过来的代码本身是没有错的,在复制一些pom.xml文件代码时,有时候会报错。原因是复制过来的代码格式出现了错误并不是代码本身的问题。

pom.xml复制过来的代码报错-Maven expected START_TAG or END_TAG not TEXT (positionTEXT se_第1张图片

并报了如下的错误:

Element 'project' cannot have character [children], because the type's content type is element-only.

Element 'properties' cannot have character [children], because the type's content type is element-only.

Maven expected START_TAG or END_TAG not TEXT (position: TEXT seen ...<

解决方案 

网上是可以查到错误的原因:pom.xml中部分内容格式不正确,整理格式,删除多余空格。但是当你复制的代码很多的时候,肯定是不可取的。所以我一开始并没有采取这种方案。

试过把复制过来的代码,先粘贴到txt文档里面,再从里面复制出来粘贴到pom.xml中,但是不可行。

最后可行的方案是:先把代码复制后粘贴到Word文档,在从Word文档复制粘贴到pom.xml文件中,就可以解决问题了。

 

你可能感兴趣的:(Java,IDEA)