The following topics and more will be covered in detail in my upcoming book with Neil Griffin, JavaServer Faces 2.0: The Complete Reference. Please enjoy this early access content!

One challenging aspect of designing JSF 2.0 was how to standardize Facelets. We wanted to standardize only the minimum amount that would still allow developers get the job done. Initially, we did not include binary custom tag handlers in the standard because most users of Facelets were simply using it to declare pages of existing UI components. Andy Schwartz and others advocated for the inclusion of a custom tag handler feature in the standard but I didn't want to just standardize what Jacob had initially done.

While Jacob's initial work for custom tag handlers was certainly effective, EG discussions with Ken Paulsen, creator of the JSFTemplating View Declaration Language led the EG to conclude that the standardization work for some of Facelets would best be left to JSF 2.1. In particular, Ken and EG member Imre Oßwald came up with something they called View Abstract Syntax Tree that would handle deeper aspects of Faces templating that they felt solved some of the flaws in the implementation of Facelets. Rather than overspecify, we came up with a simpler solution that still enables the most common usecases for custom tag handlers.

First, let's take a look at the custom.taglib.xml file. The manner and location for this file is exactly the same as before. In this example, (available in the Mojarra svn repo), the file lives atWEB-INF/classes/META-INF/custom.taglib.xml.

callstack to custom tag handler constructor 
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <facelet-taglibxmlns="http://java.sun.com/xml/ns/javaee"
  4.              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5.              version="2.0">
  6.     <namespace>http://mojarra.dev.java.net/custom</namespace>
  7.     <tag>
  8.         <tag-name>custom1</tag-name>
  9.         <component>
  10.             <component-type>javax.faces.Input</component-type>
  11.             <renderer-type>javax.faces.Text</renderer-type>
  12.             <handler-class>com.sun.faces.facelets.custom.CustomComponentHandler1</handler-class>
  13.         </component>
  14.     </tag>
  15.    
  16.  
  17.  
  18. </facelet-taglib>
  19.  

The java code for this class is shown next. At right, you see the stack trace for a breakpoint set on line 8.

  1. packagecom.sun.faces.facelets.custom;
  2.  
  3. importjavax.faces.view.facelets.ComponentConfig;
  4. importjavax.faces.view.facelets.ComponentHandler;
  5.  
  6. publicclassCustomComponentHandler1 extendsComponentHandler {
  7.     publicCustomComponentHandler1(ComponentConfig config) {
  8.         super(config);
  9.     }
  10. }
  11.  

The preceding code does nothing. But it's a start. Particurlarly useful is that ComponentConfig argument. This gives you access to a whole bunch of useful stuff. Note also that extends javax.faces.view.facelets.ComponentHandler. There are handlers for all the kinds of tags in JSF: converter, validator, component, and behavior.

In many cases, the only reason people were doing custom Facelet tags was so they could be notified when the component is built. To get this in JSF 2.0, just override theonComponentCreated() method, as shown in the next class.

  1. packagecom.sun.faces.facelets.custom;
  2.  
  3. importjavax.faces.component.UIComponent;
  4. importjavax.faces.view.facelets.ComponentConfig;
  5. importjavax.faces.view.facelets.ComponentHandler;
  6. importjavax.faces.view.facelets.FaceletContext;
  7.  
  8. publicclassCustomComponentHandler2 extendsComponentHandler {
  9.  
  10.     publicCustomComponentHandler2(ComponentConfig config) {
  11.         super(config);
  12.     }
  13.  
  14.     @Override
  15.     public voidonComponentCreated(FaceletContext ctx, UIComponent c, UIComponent parent) {
  16.         super.onComponentCreated(ctx, c, parent);
  17.     }
  18.  
  19.     @Override
  20.     public voidonComponentPopulated(FaceletContext ctx, UIComponent c, UIComponent parent) {
  21.         super.onComponentPopulated(ctx, c, parent);
  22.     }
  23.  
  24. }
  25.  

The stack traces for onComponentCreated andonComponentPopulated are here and here, respectively.

If you really must have access to the apply method, and indeed override it, you can still do so. However, to preserve a clean separation between interface and implementation there is a little extra syntatic sugar you must endure. Sorry. Here's the code for a custom tag handler that overrides apply() andcreateMetaRuleset(). The stack trace forapply() is shown at left, while the one forcreateMetaRuleset() is available here.

callstack to custom tag handler constructor 
  1. packagecom.sun.faces.facelets.custom;
  2.  
  3. importjava.io.IOException;
  4. importjavax.faces.component.UIComponent;
  5. importjavax.faces.view.facelets.ComponentConfig;
  6. importjavax.faces.view.facelets.ComponentHandler;
  7. importjavax.faces.view.facelets.FaceletContext;
  8. importjavax.faces.view.facelets.MetaRuleset;
  9. importjavax.faces.view.facelets.TagHandlerDelegate;
  10.  
  11. publicclassCustomComponentHandler3 extendsComponentHandler {
  12.  
  13.     publicCustomComponentHandler3(ComponentConfig config) {
  14.         super(config);
  15.     }
  16.  
  17.     @Override
  18.     public voidonComponentCreated(FaceletContext ctx, UIComponent c, UIComponent parent) {
  19.         super.onComponentCreated(ctx, c, parent);
  20.     }
  21.  
  22.     @Override
  23.     public voidonComponentPopulated(FaceletContext ctx, UIComponent c, UIComponent parent) {
  24.         super.onComponentPopulated(ctx, c, parent);
  25.     }
  26.  
  27.     @Override
  28.     protectedTagHandlerDelegate getTagHandlerDelegate(){
  29.         finalTagHandlerDelegate parent =super.getTagHandlerDelegate();
  30.         TagHandlerDelegate result = newTagHandlerDelegate() {
  31.  
  32.             @Override
  33.             public MetaRuleset createMetaRuleset(Class type) {
  34.                 returnparent.createMetaRuleset(type);
  35.             }
  36.  
  37.             @Override
  38.             public void apply(FaceletContext ctx, UIComponent comp) throws IOException {
  39.                 parent.apply(ctx, comp);
  40.             }
  41.         };
  42.         return result;
  43.     }
  44. }
  45.  

As mentioned previously, there are handlers for all the different kinds of JSF artifacts that may appear in a Facelet page. The syntax in the .taglib.xml file is rather similar for all of them, but the one for the validator is shown next.

  1. <tag>
  2.     <tag-name>validator</tag-name>
  3.     <validator>
  4.         <validator-id>javax.faces.Required</validator-id>
  5.         <handler-class>com.sun.faces.facelets.custom.CustomValidatorHandler</handler-class>
  6.     </validator>
  7. </tag>
  8.  

Finally, here's the code for this custom validator.

  1. packagecom.sun.faces.facelets.custom;
  2.  
  3. importjava.io.IOException;
  4. importjavax.faces.component.UIComponent;
  5. importjavax.faces.view.facelets.FaceletContext;
  6. importjavax.faces.view.facelets.MetaRuleset;
  7. importjavax.faces.view.facelets.TagHandlerDelegate;
  8. importjavax.faces.view.facelets.ValidatorConfig;
  9. importjavax.faces.view.facelets.ValidatorHandler;
  10.  
  11. publicclassCustomValidatorHandler extendsValidatorHandler {
  12.  
  13.     publicCustomValidatorHandler(ValidatorConfig config) {
  14.         super(config);
  15.     }
  16.  
  17.     @Override
  18.     protectedTagHandlerDelegate getTagHandlerDelegate(){
  19.         finalTagHandlerDelegate parent =super.getTagHandlerDelegate();
  20.         TagHandlerDelegate result = newTagHandlerDelegate() {
  21.  
  22.             @Override
  23.             public MetaRuleset createMetaRuleset(Class type) {
  24.                 returnparent.createMetaRuleset(type);
  25.             }
  26.  
  27.             @Override
  28.             public void apply(FaceletContext ctx, UIComponent comp) throws IOException {
  29.                 parent.apply(ctx, comp);
  30.             }
  31.         };
  32.         return result;
  33.     }
  34. }
  35.  

The callstacks for apply() andcreateMetaRuleset() are here and here

80% of the time, there is no need for any custom tag handlers. If you're doing your job right, the logic should be in the UIComponent, Validator, Converter, etc. However, for that extra 20% of the time, you can use the above practices to get the job done.

Technorati Tags: edburns

4 Comments

  • rdelaplante Explorer
    I pre-ordered your book, really looking forward to its release! PS: Please make sure JSF 2.1 includes a radio button component that lets me place the buttons in a group arbitrarily on the page //
    • rostislav Newbie
      Everything is cool except the fact that the CompositeComponentTagHandler class has a private constructor and cannot be extended easily. //
      • tahirraza Newbie
        Hello, While using JSF2, I am writing a CustomComponent with an associated ComponentHandler. I couldnt get it to work. Problem is its not recognizing the URI of the taglib. So, I wrote a simple, very simple CustomComponent with a ComponentHandler. Still the same problem. I deploy the app in tomcat 6 and I am using Java 6. I have been on this issue for almost 3 weeks now. I also emailed about it to you. Please help if you can. Regards, Tahir //