gpt4 book ai didi

JSF 标记在 *.xhtml 上无效,但在 *.jsp 文件上有效

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

我正在尝试使用 JSF 2.2、Netbeans 7.3 和 GlassFish v2 运行简单的应用程序。

index.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://xmlns.jcp.org/jsf/html">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
<b>Hello from Facelets</b>
<h:form id="this">
<h:outputText value="This is"/>
</h:form>
</h:body>
</html>

web.xml :

<web-app version="2.5" 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-app_2_5.xsd">
<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>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>

输出:


Output file


<b>Hello from Facelets</b>正在工作,但 <h:outputText value="this is "/>不管用。这是如何引起的,我该如何解决?

我在这里搜索,发现以下问题:

但是,答案并没有解决我的问题。


更新:@Xtreme Biker,当我像你说的那样改变时,我得到了以下异常:

This is exception

注意:如果我使用了 *.jsp而不是 *.xhtml有用。但是当我制作我的index文件扩展名 xhtml它不工作。

最佳答案

更改您的 servlet 映射以使用 .xhtml 文件。似乎还没有转换标签。

<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

关于JSF 标记在 *.xhtml 上无效,但在 *.jsp 文件上有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18396283/

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