| By Jonas Jacobi, John Fallows | Article Rating: |
|
| May 16, 2007 08:00 PM EDT | Reads: |
56,520 |
This is our last article in a series of four that have been introducing the concepts of creating AJAX-enabled JavaServer Faces (JSF) components. In this article we are going to summarize and encapsulate the concepts that were introduced in the three previous JDJ articles starting with the "Rich Internet Components with JavaServer Faces" (Vol. 10, issue 11), and design a Google-like JDJ InputSuggest component.
We will show you how to use Mabon to create a simple and powerful input component with built-in suggest functionality similar to what Google Suggest provides. To make it easy for application developers to use our JDJ InputSuggest component, we are going to use the Weblets open source project to bundle external resources, such as icons and JavaScript libraries, into a Java archive (JAR) that represents our JSF component bundle.
Creating an AJAX-Enabled JSF Input Suggest Component
The JSF AJAX input suggest solution consists of four classes as shown in Figure 1.
These classes are as follows:
- The HtmlInputSuggest is the renderer-specific subclass.
- The HtmlRenderer superclass provides some convenient methods for encoding resources.
- The HtmlInputSuggestRenderer is your new custom Renderer, which is in charge of the markup rendered to the client, including resources needed such as JavaScript libraries and style sheets.
- The HtmlInputSuggestTag is the tag handler.
The Input Suggest JavaScript Library
Since we use Mabon, there is no need to worry about fetching data from the backing bean. We can leave this to Mabon. What we do need to be concerned about, though, is how to handle the returned data on the XMLHttpRequest object, how to populate the actual suggest list, and how to handle user interactions. The inputSuggest.js library contains a number of functions that are used to handle keyboard navigation and mouse interactions, and for space limitations we'll be focusing on the functions that have the most impact on the JSF HtmlInputSuggest component.
The doKeyPress Function
The doKeyPress function, as shown in Listing 1, handles keypress events and checks whether the user pressed the TAB key or not. The TAB key would, under normal circumstances, navigate out of the input field and raising the blur event. For an input suggest solution, a TAB key can also be used to select an active row in the list of suggestions and as such we need to trap the TAB key and select a row in the suggest list and add the value to the input field, or, if no list is available, navigate out of the input field. If navigation occurs, the doBlur() function will be invoked and close the list of suggestions.
The doKeyUp Function
This function is invoked on any keyup event, and, depending on which key was activated, it will perform certain actions. Even though the TAB key has been managed by the doKeyPress function, we still have to make sure to catch it and terminate the process.
Another aspect of key strokes is the UP and DOWN arrow keys. Normally these keys will cause the cursor to navigate left and right in a regular input field. With an input suggest component a user is expecting these keys to navigate the list of suggestions.
The doKeyUp function's most important part, for this article, is to catch all key strokes that end up with a new character entered in the input suggest field, and is not a Backspace (see Listing 2). In this case the doKeyUp function will invoke the blur() function, which evaluates the value entered by the user and if changed raise a change event. We also have to reset the focus to the input suggest field, input.focus(), so the user can continue to enter more text.
If a user enters a new value, the doChange() function is invoked (see Listing 3). The doChange() function will call the mabon.send() function, passing a Map containing information about the value entered by the user, the JSF managed bean to invoke, and the callback function for this solution - _callback().
The _callback function, as shown in Listing 4, is responsible for handling the returned result from the response object and creating a list with suggestions according to the value entered by the user. Since we asynchronously communicate with the server, there is a chance that the user has entered a new character before the response comes back. To ensure that we can handle this, we have added a timer that delays the type-ahead feature until a certain time has passed.
If the value has changed since the request was made or the value is the same as the suggested value, we do nothing (see Listing 5). If the value is the same as the initial value entered, we add the first suggested value in the list to the input field and highlight the part that is appended to the value entered by the user.
The HtmlInputSuggestRenderer
It's time to have a look at how we can leverage the client-side functionality provided by the inputSuggest.js library and encapsulate it into one single JSF component. In this sample the main player is the JSF Renderer - HtmlInputSuggestRenderer. The Renderer is responsible for making sure that the correct markup is written to the client including any references to additional resources such as JavaScript libraries, CSS, icons, etc.... As we described in our previous JDJ article - "JSF and AJAX: Introducing a new open source project" (Vol. 11, issue 1) - you can use Weblets to package these resources into the same library as your JSF components.
Using Weblets
The open source Weblets project (http://weblets.dev.java.net) aims to solve the resource-packaging problem in a generic and extensible way so that all JSF component writers can leverage it, and it places no additional installation burden on the application developer.
A Weblet acts as a mediator that intercepts requests from the client and uses short URLs to serve resources from a JAR file. Unlike the servlet or filter approach, a Weblet can be registered and configured inside a JAR file, so the component library renderers, their resource files, and the Weblet configuration file (weblets-config.xml) can all be packaged together in the same JAR file. You don't need to separately deploy additional installables when the component libraries are upgraded to new versions. For the application developer, no configuration steps are needed.
It's important to note that all resources served up by Weblets are internal resources, used only by the Renderer. Any resources, such as images, that are provided by the application are supplied as component attribute values and loaded from the context root as external resources.
The HtmlInputSuggestRenderer Class
The two most important methods in this HtmlInputSuggestRenderer are the encodeBegin() and encodeEnd() methods. The encodeBegin() method, as shown in Listing 6, is responsible for writing out the needed resources for this component. The writeScriptResource() method and writeStyleResource() method are convenience methods provided by the HtmlRenderer and provide "write-only-once" semantics, preventing the same library from being written multiple times in case the application developer adds more than one input suggest component to the page.
Using Mabon
Mabon is an open source project hosted on the http://mabon.dev.java.net Web site. Mabon offers a convenient way to hook in a specially designed life cycle that is ideal for AJAX-enabled components that need to fetch data directly from a backing bean, without the overhead of a full JSF life cycle. It also provides a Mabon protocol - mabon:/ - that is used to reference the backing bean and a JavaScript convenience function that is used to send the target URL and any arguments needed and then asynchronously receive data from the managed bean.
Mabon and JSON
As you know, the XMLHttpRequest provides two response types - responseText and responseXML - that can be used to fetch data. The question to ask is, when should I use each? Answers to this question can differ depending on whom you ask, but we can recommend one rule. Ask yourself whether you control the syntax of the response.
The responseXML type returns a complete DOM object (which gives you ample ways of walking the DOM tree), allowing you to find the information needed and apply changes to the current document. This is useful when your component will impact surrounding elements and you don't control the response (for example, when you're communicating with a Web service).
For the input suggest component, you do control the response and you are looking at only fetching data for your component, not modifying the whole page's DOM structure. The responseText type returns plain text, which allows you to leverage JSON syntax for the response. For components leveraging AJAX, JSON is an extremely useful data-interchange format, since it can be easily parsed with the eval() function.
The eval() function takes one argument, a string of JavaScript code, and parses and executes this string in one go rather than trying to process each part separately. This is significantly faster than any other type of parsing, such as XML DOM parsing.
This is the reason why Mabon implements JSON - you control the response, and JSON syntax is easy and fast to parse.
The encodeEnd() Method
The real "work" is done in the encodeEnd() method, as shown in Listing 7. In the encodeEnd() method we get the Map of attributes from the HtmlInputSuggest component. One of the attributes on this component is the doSuggest attribute. From this attribute we can get hold of the MethodBinding, if any, and from the MethodBinding object we can get hold of the actual MethodBinding expression defined by the application developer, for example, #{backingBean.doSuggest}. We then trim the #{} from the expression and concatenate the remainder of the string with the mabon:/ protocol-like syntax. The MabonViewHandler will recognize the string and return a resource URL that will be written to the client (for example, /context-root/mabon-servlet-mapping/backingBean.doSuggest).
Using the Input Suggest Component
Creating an AJAX solution is not a simple task, although there are several AJAX toolkits available, such as the Dojo Toolkit (www.dojotoolkit.org), that make it a lot easier. What JSF can offer is an even simpler programming model and one that is known by millions of developers: JSP and Java. To finish this article off in a fashion that suits a proper Ajax solution, let's look at how you can use this input suggest component in a JSF application, as shown in Listing 8.
This page contains one HtmlInputSuggest component, <jdj:inputSuggest>, that has the value attribute set to a value binding expression. This expression is pointing to a value property on the backing bean. The doSuggest attribute contains a method binding expression pointing to a doSuggest() method on the same backing bean. Let's have a look at the backing bean, as shown in Listing 9.
The value property is just a plain old JavaBean property. The doSuggest() method, as shown in Listing 10, is a bit more interesting. This method takes the initial value entered by the user and passed to it via Mabon from the doChange() function (see Listing 3). The doSuggest() method then returns an Array filtered based on the users initial value to the client. It is important that the returned value conforms to the supported JSON syntax.
The end result of this HtmlInputSuggest component looks like Figure 2.
Conclusion
From this article, we hope you have gained an understanding of how to Ajax-enable data fetch for your JSF components using Mabon, and how you can package external resources needed for your JSF component into the same archive as your Java classes leveraging the Weblets project.
Finally, now that you know how to create reusable rich Internet components with JSF and AJAX, we hope you will apply the techniques you have learned in this article series to create your own custom components and build Rich Internet Applications (RIAs) with JSF.
THIS ARTICLE IS BASED ON, AND CONTAINS EXCERPTS FROM, THE BOOK PRO JSF AND AJAX: BUILDING RICH INTERNET COMPONENTS BY JONAS JACOBI AND JOHN FALLOWS, PUBLISHED BY APRESS.
Published May 16, 2007 Reads 56,520
Copyright © 2007 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Jonas Jacobi
Jonas Jacobi is co-founder and chief executive officer of Kaazing Corporation. A native of Sweden, Jacobi has worked in the software industry for more than 15 years with a mission to simplify application development. Prior to founding Kaazing, he worked for Oracle for eight years as a Java EE evangelist and product manager responsible for the product management of JavaServer Faces, Oracle ADF Faces, and Oracle ADF Faces Rich Client in the Oracle JDeveloper team. As co-founder and CEO of Kaazing, Jonas sets the company's business and product strategy and oversees all aspects of Kaazing's operations and mission to become the world-wide leader in real-time software. He is co-author of the best-selling book, "Pro JSF and Ajax: Building Rich Internet Components," (Apress).
More Stories By John Fallows
John Fallows, Co-Founder & CTO of Kaazing Corporation, is a pioneer in the field of rich and highly interactive user interfaces. In his role as chief technology officer, John formulates Kaazing's vision of creating the best real-time web framework based on the Java standard. He defines the architecture of the Kaazing product suite and oversees its development.
![]() |
Hardik Tank's Weblog 05/05/06 02:23:23 AM EDT | |||
Trackback Added: JavaServer Faces and AJAX for Google Fans; JavaServer Faces and AJAX for Google Fans |
||||
![]() |
SYS-CON Italy News Desk 04/18/06 10:22:28 AM EDT | |||
This is our last article in a series of four that have been introducing the concepts of creating AJAX-enabled JavaServer Faces (JSF) components. In this article we are going to summarize and encapsulate the concepts that were introduced in the three previous JDJ articles starting with the 'Rich Internet Components with JavaServer Faces' (Vol. 10, issue 11), and design a Google-like JDJ InputSuggest component. |
||||
![]() |
AJAX News Desk 04/18/06 10:08:29 AM EDT | |||
This is our last article in a series of four that have been introducing the concepts of creating AJAX-enabled JavaServer Faces (JSF) components. In this article we are going to summarize and encapsulate the concepts that were introduced in the three previous JDJ articles starting with the 'Rich Internet Components with JavaServer Faces' (Vol. 10, issue 11), and design a Google-like JDJ InputSuggest component. |
||||
- Kindle 2 vs Nook
- Practical Approaches for Optimizing Website Performance
- SQL Anywhere Server and AJAX
- PowerBuilder Top Feature Picks
- The Difference Between Web Hosting and Cloud Computing
- PowerBuilder 12 and .NET
- Contrary Opinion: Why Silverlight is Good for Adobe
- Ajax in RichFaces 3.3, JSF 2 and RichFaces 4
- Wave on Ulitzer: Confessions of a Google Wave Fanboy
- Cloud Computing Best Practices
- AJAX World RIA Conference & Expo Kicks Off in New York City
- Rich Content Rotator for ASP.NET
- RIAs for Web 3.0 Using the Microsoft Platform
- Kindle 2 vs Nook
- Practical Approaches for Optimizing Website Performance
- Social Media Terrorists
- SQL Anywhere Server and AJAX
- SYS-CON's Cloud Expo Adds Two New Tracks
- PowerBuilder Top Feature Picks
- The Difference Between Web Hosting and Cloud Computing
- Google Maps and ASP.NET
- Crystal Reports XI & How It Has Changed
- Converting VB6 to VB.NET, Part I
- Creating Controls for.NET Compact Framework in Visual Studio 2005
- Where Are RIA Technologies Headed in 2008?
- How to Write High-Performance C# Code
- AJAX World RIA Conference & Expo Kicks Off in New York City
- Implementing Tab Navigation with ASP.NET 2.0
- i-Technology Photo Exclusive: Bill Gates & Steve Jobs In "Nerds"
- .NET Archives: Getting Reacquainted with the Father of C#






































