gpt4 book ai didi

jsf-2 - jsf2 xhtml 页面不被浏览器解释

转载 作者:行者123 更新时间:2023-12-05 00:36:44 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





JSF returns blank/unparsed page with plain/raw XHTML/XML/EL source instead of rendered HTML output

(1 个回答)


5年前关闭。




我正在测试来自 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 的新手)。

我的测试很简单:

网页.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>

索引.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

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

结果:空白页

最后更新 :

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

我移除了这些 jar ,现在它可以工作了,你知道为什么会出现问题吗?

最佳答案

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

但是我建议只更换 *.jsf URL 模式来自 *.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打开页面.

关于jsf-2 - jsf2 xhtml 页面不被浏览器解释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7861053/

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