HI,
I'm new to JSF and am trying to use the examples from the book "Begining JSF 2APIs and JBoss Seam" by kent Ka lok Tong. I followed all the instructions but when I run the project from Eclipse the Dynamic Content is not displayed. running it from IE or mozilla firefox gives the same result (static content is displayed but not the dynamic) I'm using Eclipse Galelio 3.5.2 and JBoss 5.0.0.CR2
The following are the files I created:
web.xml:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<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>hello11</display-name>
<servlet>
<servlet-name>JSF</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>JSF</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
</web-app>
faces-config.xml:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<faces-config
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"
version="2.0">
</faces-config>
hello11.xhtml:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Insert title here</title>
</head>
<body>
Hello static.
<br/>
Hello <h:outputText value="John"></h:outputText>
</body>
web.xml and faces-config.xml are under /WEB-INF and the hello11.xhtml is under the /WebContent
I'm wondering if I'm missing something in the configuration...
Thanks.
<h:outputText/>. Do you know JSF anyway? – BalusC Dec 27 '10 at 22:36FacesServlethasn't done its job. It's namely not part of static HTML. I'd say, open up a basic JSF tutorial/book and read the 1st chapter. – BalusC Dec 27 '10 at 23:22