- cvc-complex-type.2.3: Element 'web-app' cannot have character

来源:互联网 发布:电脑多开软件 编辑:程序博客网 时间:2024/05/18 12:40

程序在jboss中运行提示

Multiple annotations found at this line:
    - cvc-complex-type.2.3: Element 'web-app' cannot have character [children], because the type's content 
     type is element-only.


解决

将头部文件

原来

<web-app version="3.0"
xmlns="http://java.sun.com/xml/ns/javaee"

修改为

<web-app version="3.0"
xmlns="http://java.sun.com/xml/ns/j2ee"


3 0