gpt4 book ai didi

java - faces-config 导致启动 Web 应用程序时出现异常

转载 作者:行者123 更新时间:2023-12-02 07:50:27 29 4
gpt4 key购买 nike

我现在正在开发一个网络应用程序。我在 tomcat 6 上使用 JSF 2。一切都很顺利,但现在我想浏览我的页面... ( I decided to do an XML-less JSF Navigation approach )。为此,我需要添加 faces-config.xml。我做到了,但是添加 faces-config 后,当我想打开页面时,我总是收到错误。

    SCHWERWIEGEND: Servlet.service() for servlet Faces Servlet threw exception
java.lang.StackOverflowError
at javax.servlet.http.HttpServletRequestWrapper.getSession(HttpServletRequestWrapper.java:216)
...

如果我删除 faces-config,一切都会很好(但然后我就没有导航了:( )。

这是我的 Maven 依赖项:com.sun.faces jsf-api 2.1.2com.sun.faces jsf-impl 2.1.2javax.servlet jSTL 1.2javax.servlet.jsp jsp-api 2.2org.glassfish.web el-impl 2.2

这是我的 faces-config.xml

<?xml version="1.0" encoding="utf-8"?>
<faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xi="http://www.w3.org/2001/XInclude" 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_1_2.xsd">

<application>
<navigation-handler>de.xxx.jsf.client.navigation.XXXNavigationHandler</navigation-handler>
</application>
</faces-config>

这是我的 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" 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"
id="WebApp_ID" version="2.5">

<display-name>JavaServerFaces</display-name>

<!-- Change to "Production" when you are ready to deploy -->
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<context-param>
<param-name>com.sun.faces.injectionProvider</param-name>
<param-value>de.xxx.jsf.client.guice.GuiceInjectionProvider</param-value>
</context-param>

<!-- Welcome page -->
<welcome-file-list>
<welcome-file>faces/hello.xhtml</welcome-file>
</welcome-file-list>

<!-- JSF mapping -->
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

<!-- Map these files with JSF -->
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>

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

</web-app>

你们中有人知道应用程序崩溃的原因吗?

提前致谢!

TJ

最佳答案

您的 faces-config.xml header 仍然指向 1.2 DTD。这可能会导致不可预测的错误。我建议将其更新到 2.0 DTD 并尝试。

<?xml version='1.0' encoding='UTF-8'?>

<faces-config version="2.0"
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">

关于java - faces-config 导致启动 Web 应用程序时出现异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10285958/

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