Last updated by
4 years ago
Page: 1.1-beta2 Release Notes, Version:4
Grails 1.1 Beta 2 Release Notes
XXX of December 2008Grails 1.1 Beta 2 is not out yet, this document summarizes the upcoming features onlyNew features in 1.1 are described below.
New Features
GORM
Better GORM events
Previously, GORM supported beforeInsert, beforeUpdate and beforeDelete events, now there is afterInsert, afterUpdate and afterDelete to complete the picturePersistence of Collections of Basic Types
GORM now supports persisting basic types like String, Integer and so on using a join table:class Person {
static hasMany = [nicknames:String]
}Read-Only Access to Objects
Persistent instances can now be loaded in a read-only state using the read method:def book = Book.read(1)
Default Sort Order
Associations can now be sorted using a default sort order declared at the class level:class Book {
String title
static mapping = {
sort "title"
}
}class Author {
static hasMany = [books:Book]
static mapping = {
books sort:"title"
}
}Batch Fetching
GORM now supports configuring batch fetching (an optimization of lazy loading) using the ORM DSL at the class level:class Book {
String title
static mapping = {
batchSize 15
}
}class Author {
static hasMany = [books:Book]
static mapping = {
books batchSize:15
}
}Improvements to Dynamic Finders
There is a new InList suffix that can be used with dynamic finders:def groovyBooks = Book.findByAuthorInList(['Dierk Koenig', 'Graeme Rocher'])
def books = Book.findByTitle("Groovy in Action", [cache:true] )
def books = Book.findByTitle("Groovy in Action", [lock:true] )
Legacy Mapping for Unidirectional One-to-manys
Unidirectional One-to-many associations can use the joinTable argument to alter the way they map to the underlying database:class Book {
String title
static belongsTo = Author
static hasMany = [authors:Author] static mapping = {
authors joinTable:[name:"mm_author_books", key:'mm_book_id' ]
}
}
class Author {
String name
static hasMany = [books:Book]
static mapping = {
books joinTable:[name:"mm_author_books", key:'mm_author_id']
}
}Enhanced Enum Support
Doc: http://jira.codehaus.org/browse/GRAILS-3633Plugins
Global Plugins
Plugins can now be installed globally for all applications:grails install-plugin webtest -global
Multiple Plugin Repositories
Grails now supports the ability to configure multiple plugin repositories by providing a USER_HOMER/.grails/settings.groovy file or a grails-app/conf/BuildSettings.groovy file that contains the configured repository details:grails.plugin.repos.discovery.myRepository="http://svn.codehaus.org/grails/trunk/grails-test-plugin-repo" grails.plugin.repos.distribution.myRepository="https://svn.codehaus.org/grails/trunk/grails-test-plugin-repo"
Automatic Transitive Plugin Resolution
Plugins no longer need to be checked into SVN and will automatically be installed via a plugins metadata when the application is first loaded.In addition, plugin dependencies are now resolved transitively.Testing
The Test Framework
The new test framework, available as a plugin for the 1.0.x series, is integrated in Grails 1.1Data Binding
Data Binding a Subset of Properties
It is now simpler to bind data to a subset of properties. Previously you could use the syntax:person.properties = params
person.properties["firstName","lastName"] = params
person.properties["firstName","lastName"].each { println it }
Data Binding for Collection Types
Grails now supports data binding to collections types including lists, sets and maps.TODO - code examplesScaffolding
Templates and Dynamic Scaffolding
Dynamic scaffolding now uses the templates that can be installed via the install-templates command.Support for more association types
Scaffolding now supports many-to-many and unidirectional one-to-many associationsINSERT SCREENSHOT (+)Groovy Server Pages
JSP Tag library support in JSP
GSP now supports the ability to re-use JSP tag libraries:<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <fmt:formatNumber value="${10}" pattern=".00"/>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> ${fmt.formatNumber(value:10, pattern:".00")}
Standalone GSP
TODOProject Infrastructure
Log4j DSL
TODOEasier Build Configuration
TODOUpgrade notes
Grails 1.1 has a number of changes, but should be mostly backwards compatible with 1.0.x series applications. If you have issues please report them. The following is a list of known issues that need to be considered when upgrading- Plugins are not stored in your USER_HOME directory. You will need to re-install your plugins or run:
grails -Dgrails.plugins.dir=./plugins run-app
- Enums are now mapped onto the database with String values instead of ordinals by default
- jsession id is now disabled by default. See GRAILS-3364
- GSP whitespace handling has been changed for the better, you may have more whitespace than before. See GRAILS-3277
- The The grails.testing.reports.destDir config option has been replaced by grails.project.test.reports.dir
- PreInit.groovy is now BuildSettings.groovy