Google App Engine不会解析JSF 2.0标记

时间:2011-06-25 09:44:27

标签: java google-app-engine jsf-2

我在AppEngine上运行JSF 2.0时遇到问题。我跟随index.xhtml,如果我部署它并打开页面,除了标题之外什么都没有,而且页面的源代码与它的编写完全相同 - {{}没有任何变化1}}到<h:head>无论如何。

<head>

index.xhtml

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"> <h:head> <title>Title</title> </h:head> <h:body> <h:inputText value="Text"/> </h:body> </html>

appengine-web.xml

<?xml version="1.0" encoding="utf-8"?> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> <application>app</application> <version>1</version> <sessions-enabled>true</sessions-enabled> <!-- Configure java.util.logging --> <system-properties> <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/> </system-properties> </appengine-web-app>

web.xml

更改后的Stacktrace

<?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">
<display-name>Task Manager</display-name>
<description>Internal task manager</description>

<!-- Seems like GAE 1.2.6 cannot handle server side session management. 
    At least for JSF 2.0.1 -->
<context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
</context-param>

<!-- Recommendation from GAE pages -->
<context-param>
    <param-name>javax.faces.PROJECT_STAGE</param-name>
    <param-value>Production</param-value>
</context-param>

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

<!-- ***** Accommodate Single-Threaded Requirement of Google AppEngine -->
<context-param>
    <param-name>com.sun.faces.enableThreading</param-name>
    <param-value>false</param-value>
</context-param>

<!-- ***** Load the JavaServer Faces Servlet ***** -->
<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>

<!-- ***** Specify session timeout of thirty (30) minutes. ***** -->
<session-config>
    <session-timeout>30</session-timeout>
</session-config>
<welcome-file-list>
    <welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
</web-app>

3 个答案:

答案 0 :(得分:3)

如果Faces Servlet没有处理请求并且没有特别关于GAE的请求,则通常会发生这种情况。

您使用什么网址访问自己的网页?由于您声明了前缀映射,因此您必须在网址中插入/ faces /,例如my.appspot.com/faces/mypage.xhtml。

我建议使用后缀映射并专门使用.xhtml:

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

答案 1 :(得分:2)

如果您在浏览器地址栏中的请求网址与FacesServlet中定义的web.xml的网址格式不匹配,则可能会发生这种情况。它是负责解析Facelet文件,创建FacesContext并完成所有JSF工作的人。

您已在FacesServlet上映射/faces/*,这意味着您必须在请求网址中的上下文路径之后包含/faces/才能使其运行。即。

  

http://example.com/contextpath/faces/index.xhtml

或者,您也可以将网址格式更改为

<url-pattern>*.xhtml</url-pattern>

这样所有XHTML(Facelet)文件都会被FacesServlet解析。

答案 2 :(得分:0)

点击MyFaces and GAE Support的此链接。它提供了一些关于如何正确设置此环境的提示,如果您需要更多信息,可以使用MyFaces Users Mailing List。要在GAE上查看使用JSF的运行示例,请检查此链接MyFaces HTML5 Demo