I have 48 domain classes in my Grails 2.1 project and I use Grails Database Migration Plugin 1.2 for a database management. Recently I’ve noticed Read more
Author: Tomasz Kalkosiński
Grails render as JSON catch
One of a reasons your controller doesn’t render a proper response in JSON format might be wrong package name that you use. It is easy Read more
Inconsistent Dependency Injection to domains with Grails
I’ve encountered strange behavior with a domain class in my project: services that should be injected were null. I’ve became suspicious as why is that? Read more
Classloader problem with Java 7 and WebServices in Grails
Our Grails 2.1 application communicates with external SOAP WebServices. It worked fine as we follow Software Guy’s advices from this blog post.
Recently, our Read more
How to use mocks in controller tests
Even since I started to write tests for my Grails application I couldn’t find many articles on using mocks. Everyone is talking about tests and Read more
Hibernate Envers with Grails 2.1.0
Our client requires that every entity in his Grails application has to be audited with detailed information: who and when did exactly what? It is Read more
Private fields and methods are not private in groovy
I used to code in Java before I met groovy. Like most of you, groovy attracted me with many enhancements. This was to my surprise Read more