分享

JSF (Java Server Faces) 开发指南 step by step

 feifan 2005-12-01
logo
Home Tutorial

How To Create Your Own Java Server Faces Components



OK. We have created our own Java Server Faces component or, even have written a whole custom tag library. How do we make it reusable? How do we distribute it?

Of course, you can copy your classes and TLD file to the new project and add records to the faces-config.xml file. It will work. However, this would be inconvenient to do each time, especially if your library contains several dozen tags with double that number of class files all requiring filling in the faces-config.xml file with references to those classes. No, this is definitely not a good way. We will choice another one.

We will gather all of the information inside just one jar file and this will be the only one file we have to distribute.

To make a long story short, this is the structure of our taglib jar file:

The package ticker contains compiled classes for our ticker component. The top level META-INF folder contains the TLD file. It also contains the faces-config.xml file where the components, but nothing else are defined. Because the faces-config.xml file we have right now contains other information besides our component configuration information, let‘s clean it up by moving the other configuration data to a separate file we‘ll call faces-config-demo.xml.

Create the WEB-INF/faces-config-demo.xml file with the following content:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
                              "http://java./dtd/web-facesconfig_1_0.dtd">
<faces-config>
 <managed-bean>
  <managed-bean-name>BannerPageBean</managed-bean-name>
  <managed-bean-class>demo.BannerPageBean</managed-bean-class>
  <managed-bean-scope>request</managed-bean-scope>
  <managed-property>
   <property-name>rendered</property-name>
   <property-class>java.lang.Boolean</property-class>
   <value/>
  </managed-property>
 </managed-bean>
 <application>
  <locale-config/>
 </application>
 <factory/>
 <lifecycle/>
</faces-config>

Remove the information about the managed bean from the faces-config.xml file. The resulting content of this file will then be the following:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
                              "http://java./dtd/web-facesconfig_1_0.dtd">
<faces-config>
 <component>
  <component-type>ticker</component-type>
  <component-class>ticker.UITicker</component-class>
 </component>
 <application>
  <locale-config/>
 </application>
 <factory/>
 <lifecycle/>
</faces-config>

This cleaned-up file will be copied inside the META-INF folder in our mylib.jar file.

To have our current demo application working, we have to add the information about the new configuration file we just added into the web.xml. This will be the content of this file:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java./xml/ns/j2ee"
 xmlns:xsi="http://www./2001/XMLSchema-instance"
 xsi:schemaLocation="http://java./xml/ns/j2ee web-app_2_4.xsd" version="2.4">
 <context-param>
  <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
  <param-value>server</param-value>
 </context-param>
 <context-param>
  <param-name>javax.faces.CONFIG_FILES</param-name>
  <param-value>/WEB-INF/faces-config.xml,/WEB-INF/faces-config-demo.xml</param-value>
 </context-param>
 <listener>
  <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
 </listener>
 <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>*.jsf</url-pattern>
 </servlet-mapping>
</web-app>

To make assembling the resulting jar file archive easier, we need to add the following code into the build.xml file:

<property name="taglib.distname" value="mylib.jar"/>
<property name="taglibdeploy.dir" value="deploy"/>

<target name="createtaglib" depends="compile"
description="Create deployable tag libraries file">
	<delete dir="${build.dir}"/>
<mkdir dir="${build.dir}"/>
<mkdir dir="${build.dir}/META-INF"/>
	<copy todir="${build.dir}/ticker">
           <fileset dir="${webinf.dir}/classes/ticker"/>
       </copy>
       <copy file="${webinf.dir}/faces-config.xml" todir="${build.dir}/META-INF"/>
       <copy file="${webinf.dir}/ticker.tld" todir="${build.dir}/META-INF"/>
       <mkdir dir="${taglibdeploy.dir}"/>
	<jar basedir="${build.dir}" jarfile="${taglibdeploy.dir}/${taglib.distname}"/>
</target>

In this file, the first property defines the name of the result archive. The second one defines the folder where the archive will be placed. To use the new Ant target coding we added, go to the Ant folder and run the script by typing from the command line:

ant createtaglib

To see how this works now, copy the mylib.jar file to the WEB-INF/lib folder of any Java Server Faces project. Then insert your new custom tag on one of the JSP pages. Don抰 forget to insert at the top of the page the definition:

<%@ taglib uri="http:///" prefix="d" %>

If you do everything right, the custom tag should work properly.

Note: Don‘t worry that you are going to use your custom tag libraries with projects that will usually have their own faces-config.xml files. It won‘t conflict with the faces-config.xml file that you have inside the META-INF folder in your library file. All of the files will be properly integrated at run-time.

See Also:

Guidelines for Designing Reusable Custom Components Using JavaServer Faces Technology


This article gives you some basic guidelines for designing
custom components using ChartComponent as an example.


Creating JSF Custom Components by Bill Dudney


This article illustrates how to build custom components for use
in web applications based on JavaServer Faces (JSF).

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多