Dynamic Ajax table example using jMaki and Java Persistence APIs on Glassfish
Posted by caroljmcdonald on February 8, 2008 at 1:52 PM EST
a Dynamic Ajax table example using jMaki
and Java Persistence APIs on Glassfish
This Sample Catalog app demonstrates the usage of the Java Persistence APIs to implement server side pagination (recommended for large sets of data), and jMaki to get and display the results in a dynamic Ajax table.
Download the jMaki Sample Application Code
jMaki is an Ajax framework that provides a lightweight model for creating JavaScript centric Ajax-enabled web applications. jMaki provides wrapped widgets that can be used as JavaServer Pages tags, as JavaServer Faces components, within a Phobos application, or with PHP. This sample applicaton uses jMaki with JavaServer Pages.
Explanation of the usage of jMaki and the Java Persistence APIs in a sample Catalog Application
The image below shows the Customer Listing page, which allows the user to page through a list of customers.
jMaki dataTable widget
With jMaki and JavaServer Pages, you can easily include wrapped widgets from ajax toolkits into a JavaServer Page as a custom JSP tag. With the Netbeans jMaki plugin you can drag jMaki widgets from the Palette into a JSP. jMaki standardizes widget data and event models to simplify the programming model and to simplify interactions between widgets.The sample application's index.jsp page uses a jMaki
yahoo.dataTable
widget to display a list of
customers in a dynamic table. The jMaki table widgets (there is also a jMaki dojo table widget) are useful when you want to show a set of results in tabular data on a web page. Table widgets provide sortable columns, row selection, and they can be updated using jMaki publish subscribe events.
In the
List.jsp
web page the dataTable is defined as shown below: (Note: Red colors
are for jMaki
tags or variables,
and Green
for my code
or variables)Code Sample from: index.jsp |
|
To determine the data format and events for the table you can refer to the jMaki Table Data Model or look at the widget.json file for the table widget. This file is located in the resources/yahoo/dataTable directory.
The
service
attribute references the CatalogService servlet
which returns the data to be
included
in the table. The data for the table should be a
JSON object containing an object of
columns and an array of row arrays. The column names need a unique id
which is then used in the data to associate it with a given row. An
example for a table of companies is shown below:Code Sample from: widget.json |
{ {'name' : 'IBM', 'city' :
'Raleigh'} |
The
publish
subscribe
attributes specify a topic that publish and subscribe events will be
sent to. Publish and subscribe events can be used to tie widgets
together (more on this later).The dataTable's
service="CatalogService" calls the CatalogService servlet
which calls the getCustomersJSON method
of the Catalog
class:Code Sample from: Catalog.java |
public class Catalog
{ |
Java Persistence Query API
The Catalog getCustomersJSON()
uses the Java Persistence API Query object
to return a list of customers, a JSONArray
object is used to return the list in JSON format. The Java
Persistence Query
APIs are used to create and execute queries that can return a
list of results. The JPA Query interface provides
support for pagination via the setFirstResult() and setMaxResults()
methods: query.setMaxResults(int maxResult)
sets the maximum number of results to retrieve. query.setFirstResult(int startPosition)
sets the position of the first result to retrieve.
In the code below, we show the
Customer
entity class which maps to the CUSTOMER table that stores the
customer instances. This is a
typical Java Persistence entity object. There are two requirements for
an entity:- annotating the class with an
@Entityannotation.
- annotating the primary key identifier with
@Id
For more information on Netbeans and JPA see basics of developing a web application using Java™ Persistence API.
Code Sample from: Customer.java |
@Id
Customer() { }JSONObject toJSON()
{ |
I added the
toJSON() method to
the Customer to return a JSON
representation of the Customer entity. jMaki Publish Subscribe events
jMaki publish subscribe events tie widgets actions together. The sample
app
uses two jMaki yahoo.button widgets
which publish to the
/button/previous,
/button/next topics
when the respective button is clicked:Code Sample from: List.jsp |
|
Events in jMaki are handled by jMaki Glue , which allows JavaScript components to talk to each other. You put function listeners which Subscribe to topics that your widgets Publish to in a file called glue.js (to read more about this see A practical guide to jMaki Events ).
Connecting the listener to the handler
The listener handler for the
/button/next topic is
shown below. First you declare the topic to listen to and then the
listener function which will handle the notification. The /button/next listener
handler increments the page number and then calls the getNextPage
funtion. Code Sample from: glue.js |
var page= 0; |
The
getNextPage
function uses jmaki.doAjax,
which
provides an easy way to make an XMLHttpRequest, to call the CatalogService
servlet passing the page number as a URI parameter. The callback function
uses eval to convert the XMLHttpRequest response
into a JSON object. Then jmaki.publish
is called to publish the returned customers
JSON object to the /table/addRows topic.The
yahoo.dataTable
widget subscribes to the table topic.Subscribe events allow you to manipulate a given instance of a widget. The event names are appended to the the subscribe topic name following a "/". For example "
/table/addRows"
will call the yahoo.dataTable addRows
function which will add the payload value passed to the widget to
the the table. This will cause the returned customers
JSON object to be displayed in the table on the html page. This
CatalogServlet
processRequest
method is defined as shown below:Code Sample from: CatalogBean.java |
public class CatalogServlet
extends HttpServlet { int rowsonly = |
The
CatalogServlet
simply calls the Catalog
class to get the next list of results from the database like we saw in
the
previous code. The CatalogServlet then
returns the resulting JSONArray
as a text string.Conclusion
This concludes the sample application which demonstrates the usage of the Java Persistence APIs and jMaki in a dynamic Ajax table example.
Configuration of the Application
for jMaki, JPA, Netbeans 6.1 and Glassfish V2
- Download
and install NetBeans 6.1 bundled with GlassFish V2
- Alternatively you can Download and install GlassFish V2 separately.
- Download and install the jMaki plug-in in the NetBeans update center.
Open and Run the Sample code:
- Download the sample
code and extract its contents. You should now see the newly
extracted directory as
<sample_install_dir>/JPAjmaki, where<sample_install_dir>is the directory where you installed the sample package. For example, if you extracted the contents toC:\on a Windows machine, then your newly created directory should be atC:\JPAjmaki.
- Start the NetBeans IDE. Click Open Project in the File menu and
select the
JPAjmakidirectory you just unzipped.
- Build the project as follows:
- Right click the
JPAjmakinode in the Projects window.
- Select Clean and Build Project.
- Right click the
- Run the project as follows:
- Right click the
JPAjmakinode in the Projects window.
- Select Run Project.
- Right click the
When you run the project, your browser should display the opening page of the Sample Application (at http://localhost:8080/JPAjmaki/).
If you want to create your own jMaki application:
- check out Arun Gupta's blog
and screencasts.
References:
- jMaki project
- jMaki book
- Dynamic
Data in jMaki Widgets Using JPA
- basics of developing a web application using Java™ Persistence API.
- Java Persistence reference page on GlassFish Project
- Java EE tutorial, for good tutorial on JPA
- Pro EJB 3: Java Persistence API book
Related Topics >>
Blog Links >>
- Login or register to post comments
- Printer-friendly version
- caroljmcdonald's blog
- 4570 reads






Comments
by caroljmcdonald - 2009-03-30 21:12
this example was published February 08, 2008. jMaki probably changed something since then. Better to ask at http://forums.java.net/jive/forum.jspa?forumID=96by pmonday - 2009-03-30 20:40
I'm a bit confused on this. I am working with jMaki 1.8.1.1 in NetBeans. When I reproduce your code exactly, the code seems to return an object reference and the table does not update: function returnUser(userid) { jmaki.doAjax({method: "GET", url: "UserLookup?userid=" + encodeURIComponent(userid), callback : function(req) { users = eval(req.responseText); jmaki.publish("/table/ldapusertable/clear", { }); jmaki.publish("/table/ldapusertable/addRows",{value: users}); } }); } Publish : Topic: /table/ldapusertable/clear message {} Publish : Topic: /table/ldapusertable/addRows message {value : [[object Object]]} When I remove the {value: users} wrapper and the publish looks like this, the result is the JSONArray, but the table still does not update: jmaki.publish("/table/ldapusertable/addRows",users); Publish : Topic: /table/ldapusertable/addRows message [{lastname : 'Monday' , firstname : 'Paul' , userid : '1111' , email : 'Paul.Monday@Sun.COM'}] Is there some subtle conversion I'm missing on this one? Paulby yummychen - 2008-05-02 00:45
Hi Carol : I use your sample code to do a dynamic ajax table. But i encountered some problems. The following code : rows : ${catalogBean.customersJSON}} dosen't work. It just return a ["xxxx", "xxxx", "xxxx"] type of string, not the required format string like {'name' : 'Sun Microsystems', 'city' : 'Santa Clara'}. I reference to the article of Dynamic Data in jMaki Widgets Using JPA. It create a data.jsp page to provide the required format string for jMaki. What can i do to follow your method to do the same thing? Thanks.by dynamicmethods - 2008-03-25 11:06
-RestApi missing in Project. -Prafulby caroljmcdonald - 2008-06-12 14:49
I updated the code.by caroljmcdonald - 2008-06-05 16:54
you're right, its not working anymore, I will try to update it