在服务器上运行xthml文件后,我收到一个空白页面,我不完全确定原因。
希望有一个简单的解决方法。如果需要,我可以提供更多信息。谢谢!
这是我试图在服务器上运行的xhtml文件(apache tomcat6)
<!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">
<ui:composition>
<ui:define name="content">
<h:form>
<h:panelGrid columns="2">
<h:outputText value="Name"></h:outputText>
<h:inputText value="#{loginBean.name}"></h:inputText>
<h:outputText value="Password"></h:outputText>
<h:inputSecret value="#{loginBean.password}"></h:inputSecret>
</h:panelGrid>
<h:commandButton value="Login" action="login"></h:commandButton>
</h:form>
</ui:define>
</ui:composition>
</html>
这是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_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>Xperiment</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</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.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>
答案 0 :(得分:2)
<ui:define>
应该用于为其他视图定义模板文件中的部分,因此其他视图将使用<ui:insert>
来定义每个特定视图的组件。由于您的视图将作为模板文件使用,因此无法显示content
部分,因此JSF将不显示任何内容(空白页)。
删除<ui:define>
代码会使您的视图按预期工作。
更多信息:
答案 1 :(得分:0)
如果在本教程页面中JSF Tools tutorial - Build a JSF 2.0 application出错了,请先尝试创建更简单的示例。
在为JSF定制Web应用程序之后,它意味着在Eclipse Properties-&gt;选中复选框JavaServer Faces ...等以包含JSF 2.0(Mojarra 2.0.2)库并默认创建faces-config.xml
文件,请尝试以下示例:JSF - template tags。如果可行,请将示例与您的代码进行比较。要启用 - 禁用page1,page2的某些部分,您可以看到,<ui:define>
条如何工作。