TOTD #45: Ajaxifying Java Server Faces using JSF Extensions
Posted by arungupta on September 17, 2008 at 8:47 AM EDT
TOTD #42 explained how to create a simple Java Server Faces application using NetBeans 6.1 and deploy on GlassFish. In the process it explained some basic JSF concepts as well. If you remember, it built an application that allows you to create a database of cities/country of your choice. In that application, any city/country combination can be entered twice and no errors are reported.
This blog entry extends TOTD #42 and show the list of cities, that have already been entered, starting with the letters entered in the text box. And instead of refreshing the entire page, it uses JSF Extensions to make an Ajax call to the endpoint and show the list of cities based upon the text entered. This behavior is similar to Autocomplete and shows the suggestions in a separate text box.
Let's get started!
- Download latest JSF-Extensions release.
- Unzip the bundle as:
~/tools >gunzip -c ~/Downloads/jsf-extensions-0.1.tar.gz | tar xvf - - In NetBeans IDE, add the following jars to Project/Libraries

- Edit "welcomeJSF.jsp"
- Add the following to the required tag libraries
<%@taglib prefix="jsfExt" uri="http://java.sun.com/jsf/extensions/dynafaces" %>
The updated page looks like:

- Add the following tag as the first tag inside
<f:view>
<jsfExt:scripts />
The updated page looks like:

- Add prependId="false" to "<h:form>" tag.
The updated tag looks like:

- Add the following fragment as an attribute to
<h:inputText> tag with "cityName" id:
onkeyup="DynaFaces.fireAjaxTransaction(this, { execute: 'cityName', render: 'city_choices', immediate: true});"
This is the magic fragment that issues an Ajax call to the endpoint. It ensures execute portion of the request lifecycle is executed for "cityName" and "city_choices" (defined later) is rendered.
The updated page looks like:

- Add a new <h:outputText> tag after
<h:commandButton> tag (to hold the suggestions output):
<h:outputText id="city_choices" value="#{dbUtil.cityChoices}"></h:outputText>
The updated page looks like:

- Add the following fragment to web.xml
<init-param>
<param-name>javax.faces.LIFECYCLE_ID</param-name>
<param-value>com.sun.faces.lifecycle.PARTIAL</param-value>
</init-param>
The updated file looks like:

- Edit "server.Cities" class
- Add a new NamedQuery in Cities class (at the mark after
yellow-highlighted parentheses):

The query is:
@NamedQuery(name = "Cities.findSimilarName", query = "SELECT c FROM Cities c WHERE LOWER(c.cityName) LIKE :searchString"),
This NamedQuery queries the database and return a list of city names that matches the pattern specified in "searchString" parameter.
- Change the toString() method implementation to return
"cityName". The updated method looks like:

This allows the city name to be printed clearly. - Add a new method in "server.DatabaseUtil" as:
public Collection<Cities> getCityChoices() {
Collection<Cities> allCities = new ArrayList<Cities>();
if (cities.getCityName() != null && !cities.getCityName().equals("")) {
List list = entityManager.createNamedQuery("Cities.findSimilarName").
setParameter("searchString", cities.getCityName().toLowerCase() + "%").
getResultList();
for (int i = 0; i < list.size(); i++) {
allCities.add((Cities) list.get(i));
}
}
return allCities;
}
This method uses previously defined NamedQuery and adds a parameter for pattern matching.
The list of created cities is:

If "S" is entered in the text box (http://localhost:8080/Cities/), then the following output is shown:

Entering "San", shows:

Entering "Sant" shows:

Entering "De" updates the page as:

And finally entering "Ber" shows the output as:

So you built a simple Ajaxified Java Server Faces application using JSF Extensions.
Here are some more references to look at:
- JSF Extensions Getting Started Guide
- Tech Tip: Adding Ajax to Java Server Faces Technology with Dynamic Faces
- JSF Extensions Ajax Reference
Please leave suggestions on other TOTD (Tip Of The Day) that you'd like to see. A complete archive of all tips is available here.
Technorati: totd mysql javaserverfaces netbeans glassfish ajax
Related Topics >>
Blog Links >>
- Login or register to post comments
- Printer-friendly version
- arungupta's blog
- 712 reads






Comments
by jdlee - 2008-09-18 14:38
miojo, DynaFaces offers a way to add very customizable Ajax support to components that don't support it natively. Furthermore, some of us aren't fans of writing GUIs in lots of Java. Different strokes. dxxvi, RichFaces and ICEfaces are both excellent component sets, but they're not always an option. DynaFaces is just one of many solutions to Ajax in JSF. Luckily, we can choose the one that fits our project best.by rogerk - 2008-09-18 13:25
jsf-extensions, richfaces and icefaces are all great frameworks. As you know, the Ajax storm took everyone by surprise, and folks were rushing to get their frameworks out the door and exposed to the community. One could also say, what is the point of richfaces when you have icefaces.... or vica versa... At any rate, the JSF 2.0 EG is developing a standard client/server side (JSF Ajax) API with help from key members from jsf-extensions, ICESoft ICEfaces, Oracle ADF Faces, JBoss RichFaces to help promote component compatibility.by dxxvi - 2008-09-18 07:41
What's the point of jsf extension when you have richfaces and icefaces? Maybe you'll spend more time learning these faces but it's worth it.by miojo - 2008-09-17 12:58
<input type="text" wicket:id="cityName"/>by miojo - 2008-09-17 12:30
Sorry, this is how the HTML will look like: <%input type="text" wicket:id="cityName"/> PS: no changes needed for an ajax input text fieldby miojo - 2008-09-17 12:25
This looks so complicated... Wouldn't be easier to just use Java? Non-Ajax: ------------- TextField cityField = new TextField("cityName"); Ajax version: ------------------ AjaxAutocompleteTextField cityField = new AjaxAutocompleteTextField("cityName"); HTML (no changes needed) @see http://wicket.apache.org