xml – 引用文件包含错误(jar:file:/…/plugins/org.jboss.tools.jst.web_3.5.0.Final-v20130717-0309-B75.jar!/catalog/web-facesconfig_2_2.xsd)

前端之家收集整理的这篇文章主要介绍了xml – 引用文件包含错误(jar:file:/…/plugins/org.jboss.tools.jst.web_3.5.0.Final-v20130717-0309-B75.jar!/catalog/web-facesconfig_2_2.xsd)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 eclipse中的JSF项目中创建,并且文件faces-config.xml给出错误
Referenced file contains errors (jar:file:/D:/eclips/eclipse k/plugins/org.jboss.tools.jst.web_3.5.0.Final-v20130717-0309-B75.jar!/catalog/web-facesconfig_2_2.xsd).

faces-config.xml中

<?xml version="1.0" encoding="UTF-8"?>
<faces-config
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
version="2.2">

</faces-config>

当我删除以下行时,错误指示在faces-config.xml中消失

http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd

更新我如何解决这个问题?

你指定了http://xmlns.jcp.org/xml/ns/javaee两次,所以删除一个.
原文链接:https://www.f2er.com/xml/292231.html

猜你在找的XML相关文章