jsf2 xhtml页面不被浏览器解释

时间:2011-10-22 16:49:26

标签: jsf-2

我正在测试coreservlets网站上的应用程序“jsf-blank”,以了解jsf如何工作但我的浏览器没有显示xhtml页面的内容。

我使用Tomcat 6和Eclipse Indigo。

您是否知道我的浏览器页面为何空白?

感谢您的帮助。

谢谢,但它不适用于jsp指令,这是我的web.xml的内容:

<servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<context-param>
    <param-name>javax.faces.PROJECT_STAGE</param-name>
    <param-value>Development</param-value>
</context-param>
<context-param>
    <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    <param-value>.xhtml</param-value>
</context-param>
<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>

上次更新:

我尝试了你的解决方案,但我遇到同样的问题,jsf标签不是由浏览器呈现的(我是JSF的新手)。

我的测试非常简单:

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"                             xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
  http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<context-param>
    <param-name>javax.faces.PROJECT_STAGE</param-name>
    <param-value>Development</param-value>
</context-param>
<servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<welcome-file-list>
    <welcome-file>index.xhtml</welcome-file>
</welcome-file-list>

index.xhtml:

  <!DOCTYPE html>
  <html lang="en"
     xmlns="http://www.w3.org/1999/xhtml"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:ui="http://java.sun.com/jsf/facelets">
     <h:head>
       <title><h:outputText value="First JSF Application" /></title>
     </h:head>
     <h:body>
        <h:outputText value="Test" /> 
     </h:body>
   </html>

上下文名称:jsf-blank

我用网址测试:http://localhost:8080/jsf-blank/index.xhtml

结果:空白页

上次更新:

谢谢,我的问题解决了,我认为问题的根源是我的tomcat的文件夹shared / lib中的rich-faces 3.3 jars。

我删除了这些罐子,现在它正在工作,你知道为什么这是一个问题吗?

3 个答案:

答案 0 :(得分:5)

当您发送的请求的URL与FacesServlet的URL模式不匹配时,会发生这种情况,这反过来会导致JSF无法运行。根据servlet映射的URL模式,您必须使用.jsf扩展名请求您的XHTML页面。想象一下,你有index.xhtml,那么你需要http://localhost:8080/contextname/index.jsf调用它。

但我建议您只使用*.jsf替换*.xhtml网址格式,这样您就不必担心并使用后缀。按如下方式更改web.xml

<context-param>
    <param-name>javax.faces.PROJECT_STAGE</param-name>
    <param-value>Development</param-value>
</context-param>

<servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>index.xhtml</welcome-file>
</welcome-file-list>

然后按http://localhost:8080/contextname/index.xhtml打开页面。

答案 1 :(得分:1)

基本上,只要配置文件或其他任何内容出现任何错误,MyFaces的JSF 2实现就会返回空白页面。更糟糕的是,错误也没有发送到日志。使用Mojarra(Oracle的JSF 2实现),您将开始获得明确的错误消息。

答案 2 :(得分:0)

RichFaces在web.xml(RichFaces Filter等)中有它自己的配置,所以如果你不想使用它,你应该删除库,因为你没有为它应用任何合适的配置,以便正确地触发它。