pom文件出现Element 'xxxxxxx' cannot have character [children],because the type's content type is element-only问题

1)问题描述:

pom.xml文件中出现

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

2)问题原因:

配置文件中的dependencies节点下面只能是元素节点,不能有字符或文本存在。

3)解决方法:

仔细检查文档,可能会存在标点符号,空格等其他文本字符。

pom文件出现Element 'xxxxxxx' cannot have character [children],because the type's content type is element-only问题

原文地址:https://www.cnblogs.com/CKhomepage/p/11809001.html

时间: 2024-10-10 07:35:50

pom文件出现Element 'xxxxxxx' cannot have character [children],because the type's content type is element-only问题的相关文章

兔子-cvc-complex-type.2.3: Element 'web-app' cannot have character [children], because the type's cont

使用Myeclipse配置web.xml时,出现错误:cvc-complex-type.2.3: Element 'web-app' cannot have character [children], because the type's content   type is element-only. 错误原因:代码是在网上找的,直接粘贴到web.xml中的,就出现了以上错误. 解决办法:手动输入代码,不要粘贴进去. 兔子-cvc-complex-type.2.3: Element 'web-a

Element 'beans' cannot have character [children],because the type's content type is element

配置文件错误—— Element 'beans' cannot have character [children],because the type's content type is element 意为 beans 标签下只能存在子元素节点,不能存在文本符号 当编译器放生这种错误时,就是配置文件发生错误.这种错误有两种情况. 1.简单错误:仔细观察代码,有时可能是存在一个文本符号 2.难以发现的错误:核实代码,完全没有文本符号,就有可能是编码问题,将整段拷贝,用notepad++打开,使用A

dubbo spring pom文件报错:提示no declaration can be found for element 'dubbo:service'.

pom文件报错:The matching wildcard is strict, but no declaration can be found for  element 'dubbo:service'. 解决办法: 找到dubbo的jar包,解压后在META-INF文件夹下找到dubbo.xsd 在eclipse中点击windows-->preferrence-->xml-->xmlcatalog 选择add-->catalog entry  -->file system

spring pom文件报错:提示no declaration can be found for element 'dubbo:service'.

转自:http://blog.csdn.net/happylife_haha/article/details/52755425 pom文件报错:The matching wildcard is strict, but no declaration can be found for  element 'dubbo:service'. 解决办法: 找到dubbo的jar包,解压后在META-INF文件夹下找到dubbo.xsd 在eclipse中点击windows-->preferrence-->

手动通过Lucene判断该pom文件中jar是否存在,子依赖没判断

package lucne.test; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import org.apache

MyEclipse导入Maven项目pom文件第一行报错,运行Tomcat报Log4j错误--解决方法

问题描述: 前一段时间电脑第一次导入Maven项目,又是pom文件错,改好后又是运行Tomcat报Log4j错误,一直倒腾了近一个月程序才成功跑起来,太不容易. 也上网查了很长时间,没一个方法能解决我的问题的.特记下解决方法,希望能帮到像我这样的web刚入门者. (刚入门,肯定有说的不对的地方,有错也希望能指出来,我改正) 前期操作:导入项目后clean,install,update,中会报错(因为我已经解决了,所以没有×). 两问题对应解决方法: 1.pom文件第一行大红叉,说明是项目的文件指

Maven命令与pom文件常量

端碗吹水 Maven命令: Maven不单止可以在Eclipse上使用,也可以在cmd中使用命令的方式操作,虽然这样十分麻烦,而且有一般也不会使用,但是还是得了解一些可能会用到的操作方式. 1.mvn compile命令:此命令用于编译工程,使用此命令在cmd里编译工程代码时,需要先cd进工程目录下,不然会报错. 使用命令编译工程的话,工程文件夹可以[学Java,到凯哥学堂kaige123.com]自己手动创建,这个手动创建的样式和用Eclipse创建的样式差不多,工程文件夹下是main和tes

Maven 项目依赖 pom 文件模板

下面是网上down的 pom 文件模板: <!-- 属性 --> <properties> <spring.version>4.2.4.RELEASE</spring.version> <hibernate.version>5.0.7.Final</hibernate.version> <struts.version>2.3.24</struts.version> </properties> <

mave 中pom文件基本配置

什么是Pom Pom是项目对象模型(Project Object Model),它是Maven项目中的文件,表示的不仅仅是一堆包含代码的文件.还包含了与开发有关的组织,项目url,项目依赖,以及其他.而且一个project可以仅包含pom.xml Pom 基本设置 <projectxmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&q