jsf入门笔记

lmseeyou 2007-03-26
使用环境:

Eclipse 3.1.0 + Download Java 2 Platform Standard Edition 5.0 + MyFaces 1.1.0 + Exadel Studio 3.0.5

  + Tomcat 5.5

所需要的jar:

commons-beanutils-1.6.1.jar
commons-codec-1.2.jar
commons-collections-3.0.jar
commons-digester-1.5.jar
commons-el.jar
commons-fileupload-1.0.jar
commons-logging.jar
commons-validator.jar
jakarta-oro.jar
jstl.jar
log4j-1.2.8.jar
myfaces-api.jar
myfaces-impl.jar
tiles.jar
tomahawk.jar

使用Exadel Studio建立JSF Project

File -> New ->Project... ->Exadel Studio -> JSF/JSF Project

填写Project Name ,JSF Environment 选择 MyFaces 1.1.0 ,然后按下一步,选择服务器。

选择好当前使用的TomCat服务器(tomcat5.5)按Finish结束。

到此为止,JSF Project建立完毕。

建立页面

在WebContent下面建立文件夹pages,然后在pages单击右键,新建->JSP File

每个jsf页的上面都要包含


<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>

而且,每新建一个页面都要在WebContent/WEB-INF/examples-config.xml这里注册。examples-config.xml这个名字可以在web.xml文件中修改,可以换成任意名字与之对应。

  <param-name>javax.faces.CONFIG_FILES</param-name>
  <param-value>/WEB-INF/examples-config.xml</param-value>



Global site tag (gtag.js) - Google Analytics