0

嗨,我是 JavaServer Faces (JSF) 技术的新手,在成功设置了从 Eclipse Mars JavaEE 到 GlassFish 4.0 服务器的所有内容后,我遇到了以下问题:

在 Eclipse 创建我的项目之后,我创建了一个动态 Web 项目并将 JavaServer Faces 添加到配置中,当我尝试将项目部署到我的 GlassFish 服务器时,我收到以下错误消息:

cannot Deploy JavaServerFaces
deploy is failing=Error occurred during deployment: 
Exception while deploying the app [JavaServerFaces] :
org.xml.sax.SAXParseExceptionpublicId:file:*/glassfish4/glassfish/lib/schemas/web-app_3_1.xsd; 
lineNumber: 281; columnNumber: 47; 
Deployment descriptor file WEB-INF/web.xml in archive [JavaServerFaces].  
src-resolve: Cannot resolve the name 'javaee:web-commonType' to a(n) 'group' component.. 

当我从我的项目中删除web.xml文件时,我可以部署我的项目并且一切正常,但问题是我无法定义任何 servlet 映射,也无法设置欢迎页面......

如果您能给我解决这个问题的任何帮助或指示,我将不胜感激。

更新

我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app 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-app_3_1.xsd"
     version="3.1">
</web-app>
4

1 回答 1

1

我会邀请您检查此web.xml 验证错误 根据错误消息中的最后一个短语,它似乎与您的问题相似

于 2015-10-30T20:50:17.187 回答