Last updated by
3 years ago
Page: 1.2-M3 Release Notes, Version:8
Grails 1.2-M3 Release Notes
XXX of XXX 2009Grails 1.2-M3 is not out yet, this is just a placeholderSpringSource are pleased to announce the 1.2 Milestone 3 release of the Grails web application development framework.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. Further information about the release can be obtained using the links below:
- Changelog: http://jira.codehaus.org/browse/GRAILS?report=com.atlassian.jira.plugin.system.project:changelog-panel
- Download: http://grails.org/Download .
- Documentation: http://grails.org/doc/1.2.x
New Features
Dependency Resolution DSL
Grails 1.2 features a new DSL for configuring JAR dependencies that can be resolved against Maven repositories:grails.project.dependency.resolution = {
inherits "global" // inherit Grails' default dependencies
repositories {
grailsHome()
mavenCentral()
}
dependencies {
runtime 'com.mysql:mysql-connector-java:5.1.5'
}}Significant Performance Optimizations
GSP and the Sitemesh rendering layer have been significantly improved to offer 2 to 3 times better throughput. This was achieved by:- Output buffering has been refactored to a streaming approach: the minimum amount of new objects are created.
- Tag library calls return an instance of org.codehaus.groovy.grails.web.util.StreamCharBuffer class by default.
- Tag libraries can now return object values too. This was changed to reduce object generation.
- Sitemesh doesn't have to parse the output coming from GSP since the head, meta, title and body tags are captured from the beginning. This is done in GSP compilation when the config param "grails.views.gsp.sitemesh.preprocess" is unset or is true.
- Some performance improvements are the result of monitoring for unnecessary Exceptions created in Grails and preventing them from happening.
Spring 3 Upgrade
Grails now also supports Spring annotation prototypes through component scanning such as @Service, @Component etc.Any class can be annotated with @Component and will automatically become a Spring bean injectable in other classes.In addition you can annotate classes with @Controller and these will be able to handle requests just like regular Spring MVC controllers, thus providing support for those wanting to use a combination of Spring MVC and Grails:@Controller
class SpringController { @Autowired
SessionFactory sessionFactory @RequestMapping("/hello.dispatch")
ModelMap handleRequest() {
def session = sessionFactory.getCurrentSession()
return new ModelMap(session.get(Person, 1L))
}}/hello.dispatch will execute the handleRequest() method and atempt to render either a GSP or JSP view at grails-app/views/hello.(jsp|gsp)URI Re-writing onto any URI
You can now re-write any request URI onto any other URI using the following syntax in yourgrails-app/conf/UrlMappings.groovy file:"/hello"(uri:"/hello.dispatch")
Per-method transactions with @Transactional
Building on the component scanning features you can now use the Spring org.springframework.transaction.annotation.Transactional annotation on Grails service classes to configure transaction properties and have per-method transaction definitions:import org.springframework.transaction.annotation.*class BookService { @Transactional(readOnly = true) def listBooks() { Book.list() } @Transactional def updateBook() { // … } }
Fine-grained control over DataSource properties
The DataSource.groovy file now provides control over all of the underlying DataSource bean's properties:dataSource {
pooled = true
dbCreate = "update"
url = "jdbc:mysql://localhost/yourDB"
driverClassName = "com.mysql.jdbc.Driver"
username = "yourUser"
password = "yourPassword"
properties {
maxActive = 50
maxIdle = 25
minIdle = 5
initialSize = 5
minEvictableIdleTimeMillis = 60000
timeBetweenEvictionRunsMillis = 60000
maxWait = 10000
}
}Improved Dynamic Finders for Boolean properties
GORM dynamic finders have been improved with an easier notation for handling boolean properties. For example given a domain class of:class Book {
String title
String author
Boolean paperback
}def results = Book.findAllPaperbackByAuthor("Douglas Adams")ordef results = Book.findAllNotPaperbackByAuthor("Douglas Adams")
Named Query Support
GORM now supports defining named queries in a domain class. For example, given a domain class like this:class Publication {
String title
Date datePublished static namedQueries = {
recentPublications {
def now = new Date()
gt 'datePublished', now - 365
} publicationsWithBookInTitle {
like 'title', '%Book%'
}
}}// get all recent publications… def recentPubs = Publication.recentPublications()// get all recent publications (alternate syntax)… def recentPubs = Publication.recentPublications.list()// get up to 10 recent publications, skip the first 5… def recentPubs = Publication.recentPublications(max: 10, offset: 5) def recentPubs = Publication.recentPublications.list(max: 10, offset: 5)// get the number of recent publications… def numberOfRecentPubs = Publication.recentPublications.count()// get a recent publication with a specific id… def pub = Publication.recentPublications.get(42)
Support for hasOne mapping
GORM now supportshasOne mapping where the foreign key is stored in the child instead of the parent association. For example:class Person {
String name
static hasOne = [address: Address]
}
class Address {
String street
String postCode
}person_id will be created in the address table rather than the default where an address_id is created in the person table.Strict Validation Errors
There is a newfailOnError argument available on the save() method that will throw an exception if a validation error occurs:try { book.save(failOnError:true) }catch(ValidationException e) { // handle }
Precompilation of Groovy Server Pages in WAR deployment
GSPs are now pre-compiled when producing a WAR file meaning less permgen space is used at deployment time for Grails applications.Improved handling of i18n class and property names
You can now put entries in your i18n messages.properties file for all class and property names in your application. For example:book.label = Libro book.title.label = TÃtulo del libro
Tomcat & Multiple Embedded Containers Supported
Grails now supports multiple embedded containers with Tomcat being the default. Grails will by default install the Tomcat plugin into your application. You can easily switch containers by switching plugins:grails uninstall-plugin tomcat grails install-plugin jetty
grails tomcat deploy grails tomcat undeploy
Named URL Mappings
Grails now supports named URL mappings and associated dynamic tags for view layer URL rewriting. For example:name productDetail: "/showProduct/$productName/$flavor?" { controller = "product" action = "show" }
<link:productDetail
productName="licorice"
flavor="strawberry">Strawberry Licorice</link:productDetail>REST improvements
The <g:form> tag can now pass other methods beside POST and GET:<g:form method="DELETE">Project Documentation Engine
The same documentation engine that powers the Grails reference documentation is now available in your projects. Simply create your documentation inside thesrc/docs/ref and src/docs/guide directories of your project. See the Grails documentation source for an example.Zip-only plugin releases
If you prefer to use Git/Mercurial/etc. to version control your plugin you can now distribute only the zipped release of the plugin in the central repository and continue to manage the actual sources outside of SVN:grails release-plugin --zipOnly
Plugin Metadata Generator
When releasing a plugin into the Grails central repository metadata is generated about the methods and properties added to Grails classes at runtime.This metadata is put into the plugin.xml descriptor and can be read by IDEs and documentation engines.If your plugin doesn't add methods at runtime you can skip the metadata generation process by doing:grails release-plugin --skipMetadata