我想在Eclipse 3.6中创建JSF 2.0项目,我想在Websphere Application Server Community Edition 2.1上部署它。
我创建了一个简单的Web项目。
在index.html
我写这段代码
<!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>JSF 2.0</title>
</h:head>
<h:body>
jsf welcome
</h:body>
</html>
但是,在页面中无法看到<h:body>
和<h:body>
标记之间的文字。我该如何解决这个问题?
这是buildpath:
这是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>JSFApp</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<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>
<context-param>
<description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>resources.application</param-value>
</context-param>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
</web-app>
有任何错误吗?
答案 0 :(得分:2)
有两个问题:
您使用.html
代替.xhtml
。默认情况下,JSF 2.0会解析*.xhtml
上的视图。将您的index.html
重命名为index.xhtml
。
您应该使用与url-pattern
的{{1}}匹配的网址在浏览器中打开该页面,在您的情况下为FacesServlet
。因此:http://example.com/contextname/faces/index.xhtml而不是http://example.com/contextname/index.xhtml,甚至不是.html。
但是,我建议您将/faces/*
替换为/faces/*
,以便您(以及您的最终用户)在省略或忘记*.xhtml
部分时不必感到惊讶URL。唯一的缺点是,如果没有/faces
的参与,您将无法提供“普通的”.xhtml
文件,但在现实世界中几乎不会出现这种情况。而只是提供FacesServlet
等文件。