Prabhu Sunderaraman

Revisiting JEE after a long gap

After a long gap, there was an opportunity to jump into core JEE last week for a client. Though lots have been written about this here’re are some observations about it. 1) To begin with, after working with Groovy and […]

Callbacks() in jQuery

There are different operations that you want to perform on some data. The functionalities that you want to perform will depend on the user input or actions. Now, the implementation looks like normal function calls based on some conditions. Things […]

Few useful utilities in GORM

You will always learn something new, whenever you work with Grails. It doesn’t fail to surprise you everytime. Last week’s client visit made me sit up and notice few more useful methods in GORM. failOnError:true.An useful property when applied while […]

Interesting article on Java 8

Ever since dynamic languages like Groovy started making so much noise accompanied with JavaScript, the pressure has been on Java language to revamp itself. C# has been doing that pretty smartly over the years. C# started off as a pale […]

DSL with Groovy, another one

In one of the earlier posts we created a simple query using Groovy DSL. Let’s implement another example as shown below using the DSL capabilities of Groovy. Let’s create User.groovy with the code shown below. //User.groovy Calculator.compute { addition 2,3 […]