Exploring Software: Extending J2EE Applications Using Grails

0
4201
Groovy, baby!

Groovy, baby!

We look at how J2EE users can benefit from agile development methodologies by using Grails to maximise the returns from their middleware layer.

Exploring Grails is very much like exploring Rails. This is to be expected, since Grails was modelled on Rails. The obvious major difference is in the language being used; Rails uses Ruby, while Grails uses Groovy.

Groovy is a dynamic language like Ruby or Python. However, its syntax is close to Java’s, so Java programmers should be very comfortable with it. The major advantage is that it “…seamlessly integrates with all existing Java classes and libraries.” Furthermore, it “…compiles straight to Java bytecode; so you can use it anywhere you can use Java.”

The advantages of Groovy with Java get carried forward to Grails — hence, Grails is a very attractive option for organisations that are already using Java applications. J2EE applications are very common in major corporations. By adapting Grails, J2EE users can gain the advantages of agile development methodologies.

But how easy would it be to enhance existing applications or code with modules written in Grails? The first possibility is that you may wish to use an existing database. However, Grails starts with the definition of domain classes, which are translated into a relational database using the object-relational mapping API, GORM, which is a thin layer on top of Hibernate.

Existing databases

If you wish to use an existing database, create the domain classes as per the existing database. This developerWorks tutorial explains the possibilities. You can work with a relational database — Hibernate or EJB3’s.

An interesting solution is to use the database to create a CRUD application using Grails Application Generator.

The Amarok music player uses a MySQL database, so I decided to experiment with GRAG on the database used by Amarok. I selected a few tables (related to tracks) from the database, and created the Grails application. It just creates the domain classes. Creating the controllers resulted in a very uninteresting application, as the relationships between the various tables were not modelled.
I went back to GRAG and after selecting the tables, defined the relationship between the tables — and then generated the domain classes. The results were far more interesting, particularly with bidirectional relations. You could create an album and add tracks to it, or explore tracks and get information about the album.

The default locking mechanism is optimistic, as in the case of Hibernate. The version property assumes significance in this context. Since an existing database may not have the version column, it may be necessary to use pessimistic locking explicitly, where needed.

Views

The default layout of the scaffold is quite usable. There is an option to generate views, which will generate the Groovy Server Pages (GSP) for the List, Create, Edit and Show options. These can be modified to create customised views.

As you would expect, GSP can use custom JSP tags. GSP uses the <% %> syntax for variables, script code, expressions, etc., which makes it similar to JSP and RHTML. However, GSP also includes tags, like JSTL. The tags built into GSP are specified as <g:example /> and are the preferred way to use GSP. Additional tags can be easily implemented using Groovy. This style is also similar to Zope’s TAL.

For AJAX, Grails ships and uses the Prototype and Scriptaculous libraries, by default. However, it can use alternative libraries like Dojo, Yahoo UI or GWT by using plugins. Grails tags like remoteLink, formRemote and submitToRemote for AJAX will use the appropriate Javascript library.

For layouts, Grails also uses Sitemesh to decorate the views. “SiteMesh is a Web-page layout and decoration framework and Web-application integration framework to aid in creating large sites consisting of many pages, for which a consistent look/feel, navigation and layout scheme is required.”

Hence, ensuring a reasonable consistency of look and feel between a Grails application and the traditional J2EE application should not be difficult.

URLs

The structure of the URL is controller/action/id. controller is a class. action is a method in the class. id would normally identify the domain object. As you might expect, the URL mapping is controlled by a script, UrlMappings.groovy, and you do not have to use the default settings. This again can be useful when integrating with existing J2EE applications.

In this article, we have briefly explored the possibilities with Grails. A wide range of tutorials and documentation is available to explore it in depth. A priori, Grails would appear to be an excellent option for J2EE shops to add new capabilities to their environment using agile development methodologies.

When users are impatient, competition fierce, and the cost of missed opportunities is high, it is worth taking a look at grails.org/Testimonials and, perhaps, there will be an opportunity for your organisation.

Feature image courtesy: amysphere. Reused under terms of CC-BY 2.0 License

LEAVE A REPLY

Please enter your comment!
Please enter your name here