我的第一个JSF xhtml显示空白页面

时间:2014-11-21 19:23:17

标签: jsf jsf-2 xhtml tomcat7

我刚刚下载了Tomcat 7.0.53并使用Mojarra 2.0.3实现编写了我的第一个JSF2.0 Hello World XHTML文件(helloworld.xhtml)。

我的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>webroot</display-name>
  <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>

</web-app>

我的faces-config.xml是:

<?xml version="1.0" encoding="UTF-8"?>
<faces-config
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
    version="2.0">

</faces-config>

我的webcontent / WEB-INF / lib文件夹包含以下jar文件:

jsf-api.jar
jsf-impl.jar
jstl.jar
standard.jar

我的helloworld.xhtml代码是:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<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">

<h:head>
    <title>Simple JSF Page</title>  
</h:head>

<h:body>
    <h:outputText>Hello World!</h:outputText>
</h:body>

</html>

当我使用

运行时
http://localhost:8080/webroot/helloworld.faces

显示空白页面。出了什么问题?

1 个答案:

答案 0 :(得分:0)

你对outputText的使用是错误的

将其更改为

<h:outputText  value="Hello World"></h:outputText>