在学习JSF并尝试在浏览器中打开xhtml页面时,我经常遇到错误解析XML:找不到元素"问题。我搜索了网络和stackoverflow以便修复它,但没有一个解决方案适合我。
我对JSF很新,可能会做一些新手的错误。我的应用程序中的所有页面都出现问题,所以我认为我的web.xml可能不正确?
应用服务器是JBoss,浏览器是Firefox,位于Ubuntu 14.04上。
这是web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>HomeLib</display-name>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<context-param>
<description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>resources.application</param-value>
</context-param>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
</web-app>
我的网页结构如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<h:html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<!-- here goes the content -->
</h:html>
答案 0 :(得分:0)
我认为你称之为错误的方式。
您在浏览器中的网址应为:
<强>主机名:端口强> / <强>项目名称强> / <强>面图案强>
在你的情况下:
http://localhost:8080/HomeLib/faces/
这相当于:
http://localhost:8080/HomeLib/faces/index.xhtml
面对url模式(在你的情况下是 / faces / * )是必要的,告诉服务器应该通过FacesServlet处理请求的URL