github grails/grails-core v2.0.2
Grails 2.0.2

latest releases: v6.2.0, v4.1.4, v6.1.2...
9 years ago

This release contains bug fixes and improvements.

In addition there are important improvements to data binding. See Jeff's blog on the topic for details.

In Grails 2.0.2 the data binding mechanism will by default exclude all properties which are static, transient or dynamically typed. You may need to specify "bindable:true" in your constraints block in order to upgrade. Example presented below:

 class User {
     String email
     String passwordHash

     static transients = ['password']

     def setPassword(password) {
         passwordHash = email + password
     }
     static constraints = {
         password bindable:true
     }
 }

For information about Grails 2.0 see the following links:

For information about Grails 2.0 see the following links:

Don't miss a new grails-core release

NewReleases is sending notifications on new releases.