Last updated by
2 years ago
Page: 1.3.2 Release Notes, Version:5
Grails 1.3.2 Release Notes
Grails 1.3.2 has not been released yet. This page is a placeholder.Grails is a dynamic web application framework built on Java and Groovy, leveraging best of breed APIs from the Java EE sphere including Spring, Hibernate and SiteMesh. Grails brings to Java and Groovy developers the joys of convention-based rapid development while allowing them to leverage their existing knowledge and capitalize on the proven and performant APIs Java developers have been using for years.
Groovy 1.7.3 Support
Grails 1.3.2 comes with the recently released 1.7.3 version of the Groovy language. See the Groovy 1.7.3 release notes for info.Typo detection for scripts
If you mis-type a script name, Grails will find the closest matches to what you typed and prompt you to choose from a list of existing scripts:~/workspace/testapp $ grails create-doman-class testapp.Author Welcome to Grails 1.3.2 - http://grails.org/ Licensed under Apache Standard License 2.0 … Script 'CreateDomanClass' not found, did you mean: 1) CreateDomainClass 2) CreateApp_ 3) CreateScript 4) CreateFilters 5) CreateUnitTest Please make a selection or enter Q to quit:
The .find Method Now Supports The Query Cache
def musicians = Musician.find('from Musician where name = :name', [name: 'Brian'], [cache: true])