gpt4 book ai didi

java - Helloworld JSF2.0 页面未呈现为 html 标签

转载 作者:行者123 更新时间:2023-12-01 04:20:26 25 4
gpt4 key购买 nike

我是 Java 和 JSF 的新手。我正在使用 eclipse Indigo、Tomcat 6.0.3 和 JSF 2.0。

当我在浏览器中运行页面时,我只得到一个空页面,但我可以在 firebug 中发现它仍然在 JSF 标记本身中。它没有以 html 形式呈现..

这是我的 web.xml

 <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>/app/*</url-pattern>
</servlet-mapping>

<welcome-file-list>
<welcome-file>pages/AddUser.xhtml</welcome-file>
</welcome-file-list>

<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>

<session-config>
<session-timeout>15</session-timeout>
</session-config>

我尝试将 url-pattern 添加为 *.xhtml 但仍然不起作用。

这是我的 xhtml 文件..

<?xml version="1.0" encoding="UTF-8" ?>
<!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:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets">

<h:head>
<title>Add New User Form</title>
</h:head>
<h:body>
<f:view>
<h:form>
<h:outputText value="Age"></h:outputText>
</h:form>
</f.view>
</h:body>

最佳答案

问题是 JSF servlet 的模式是 <url-pattern>/app/*</url-pattern> 。将模式更改为*.jsf并访问http://localhost:8080/yourXhtmlFileName.jsf .

关于java - Helloworld JSF2.0 页面未呈现为 html 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18974091/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com