-
Groovy
Custom User types in GORM
Recently, I wanted to model a Merchant which like many things in a domain model had an Address. I thought…
Read More » -
Software Development
Postgres indexes
Recently, I had a situation where I needed to think how I was using Postgres indexes. I had a simple…
Read More » -
Enterprise Java
Problems with Cobertura and Sonar 5.1
Recently, I was having some bother trying to use Sonar 5.1 with my Grails 2.4.4 project. I was using the…
Read More » -
Groovy
Using separate Postgres Schemas for the same database in a Grails App
Recently, I wanted to use the same Postgres Database but split my persistence layer into separate components which used separate…
Read More » -
Groovy
MongoDB and Grails
So recently, I had a requirement to store unstructured JSON data that was coming back from a web service. The…
Read More » -
Groovy
Grails tip: refactoring your URLs
On the current project I am working we use a lot of integration tests. For you non-Grails users out there,…
Read More » -
Groovy
Groovy Closures: this, owner, delegate let’s make a DSL
Groovy closures are super cool. To fully understand them, I think it’s really important to understand the meaning of this,…
Read More » -
Core Java
Good use of Closures
Not long ago, in a blog post, I explained what Closure were in Groovy. This blog post will explain one…
Read More » -
Groovy
Closures in Groovy
The simpliest explanation of a closure in Groovy is that it is anonymous function. …
Read More »