(Quick Reference)

1 Introduction

Version: 8.0.0-M2

1 Introduction

Many modern web frameworks in the Java space are more complicated than needed and don’t embrace the Don’t Repeat Yourself (DRY) principles.

Dynamic frameworks like Rails and Django helped pave the way to a more modern way of thinking about web applications. Grails builds on these concepts and dramatically reduces the complexity of building web applications on the Java platform. What makes it different, however, is that it does so by building on already established Java technologies like Spring and Hibernate.

Grails is a full stack framework and attempts to solve as many pieces of the web development puzzle through the core technology and its associated plugins. Included out the box are things like:

All of these are made easy to use through the power of the Groovy language and the extensive use of Domain Specific Languages (DSLs)

This documentation will take you through getting started with Grails and building web applications with the Grails framework.

In addition to this documentation, there are comprehensive guides that walk you through various aspects of the technology.

Finally, Grails is far more than just a web framework and is made up of various sub-projects. The following table summarizes some other key projects in the eco-system with links to documentation.

Table 1. Grails Ecosystem Projects
Project Description

GORM for Hibernate

An Object Mapping implementation for SQL databases

GORM for MongoDB

An Object Mapping implementation for the MongoDB Document Database

GORM for Neo4j

An Object Mapping implementation for Neo4j Graph Database

Groovy Server Pages

A View technology for rendering HTML and other markup on the server

JSON Views

A View technology for rendering JSON on the server side

Async Framework

Asynchronous programming abstraction with support for RxJava, GPars and more

1.1 What's new in Grails 8?

This section covers all the new features introduced in Grails 8

Overview

Grails 8 is a major release that includes new features, improvements, and dependency upgrades. This release focuses on enhancing the developer experience, improving performance, and ensuring compatibility with the latest technologies.

For detailed information on how to upgrade to Grails 8, including major dependency changes, please see the Upgrading from Grails 7 to Grails 8 section. Notable new features are included below.

Platform Baseline

Grails 8 raises the standard build and runtime baseline to Java 21 and uses Gradle 9.6.0. The standard Grails BOM remains on Groovy 4.0.32 and Spock 2.4-groovy-4.0, while Micronaut-enabled Grails applications use Micronaut-specific BOM variants that align with Micronaut 5 and require JDK 25 or later.

Spring Boot 4.1 and Spring Framework 7

Grails 8 is built on Spring Boot 4.1.0 and Spring Framework 7.0.8. This brings the Spring Boot 4 modular artifact layout, Spring Framework 7 API removals, Jackson 3, Tomcat 11 and Jakarta Servlet 6.1, plus Spring Boot 4.1 dependency management for Spring Security 7.1, Spring Data 2026.0 and Micrometer 1.17.

The Grails 8 upgrade guide calls out the major application-impacting changes and links to the Spring Boot 4.0 migration guide, Spring Boot 4.1 release notes and Spring Framework 7.0 release notes.

GSP Tag Library Improvements

Grails 8 continues the move toward method-based TagLib handlers while preserving compatibility with existing closure-based tags. Method-defined tags now bind named attributes more predictably, exclude inherited framework and Object methods from tag dispatch, and preserve real namespace property getters.

The Grails Gradle extension now defaults preserveParameterNames to true, so application Groovy compilation preserves method parameter names for features such as typed method TagLib arguments.

Tag library unit tests also clean up and rebuild TagLib metadata automatically between features. Tests that use TagLibUnitTest no longer need to manage purgeTagLibMetaClass, and specs that mock additional tag libraries continue to work across feature methods.

@GrailsCompileStatic on Controllers That Use Tag Libraries

Controllers annotated with @GrailsCompileStatic can now invoke tag library methods without compile-time errors.

Both calling patterns are supported out of the box:

import grails.compiler.GrailsCompileStatic

@GrailsCompileStatic
class BookController {

    def index() {
        // Direct call in the default namespace
        response.writer << link(controller: 'book', action: 'list')

        // Namespaced call via a dispatcher property
        response.writer << my.customTag(attr: 'value')
    }
}

@GrailsCompileStatic recognises controllers and tag libraries by convention and marks tag dispatch points as permissible dynamic calls, while leaving the rest of the class fully type-checked.

Opt All Controllers, Services and Tag Libraries into GrailsCompileStatic

Static compilation can now be enabled for every controller, service and tag library in an application from the nested compileStatic block of the grails build configuration, without annotating each class:

build.gradle
grails {
    compileStatic {
        controllers = true
        services = true
        tagLibs = true
    }
}

All three options are disabled by default and independent, or compileStatic { all = true } can be used as a shortcut to enable all of them. Any class that declares its own @CompileDynamic (or @GrailsCompileStatic/@CompileStatic/@GrailsTypeChecked/@TypeChecked) annotation keeps that setting, so the opt-in never overrides an explicit per-class choice. Tag libraries that still declare tags as closure fields (the deprecated form) are skipped automatically by the tagLibs opt-in — left dynamically compiled with a build warning — so define tags as methods to opt them in. See the GrailsCompileStatic section for details.

Test HTTP Client Form Requests

Integration tests that implement HttpClientSupport can now use httpPostForm(…​) to send application/x-www-form-urlencoded request bodies. The helper URL-encodes form fields using UTF-8, and repeated values in a Collection or array are encoded as repeated keys in insertion order.

GORM for MongoDB: TTL, Text, and Reconciled Indexes

GORM for MongoDB can now declare a TTL index directly in the mapping DSL. Adding expireAfterSeconds to the indexAttributes of a single date-valued property creates a TTL index, and MongoDB automatically removes each document once it reaches the configured age:

class LoginEvent {
    Date dateCreated
    static mapping = {
        dateCreated index: true, indexAttributes: [expireAfterSeconds: 3600]
    }
}

A single property can likewise declare a $text index — or another special type such as 2dsphere — through indexAttributes: [type: 'text'].

When the options of an already-created index change between restarts, GORM now reconciles the difference instead of only logging a conflict. A changed TTL is applied in place with MongoDB’s collMod command — no drop, no rebuild — while any other option change is applied by declaring indexAttributes: [recreateOnConflict: true].

1.1.1 Updated Dependencies

Grails 8.0.0-M2 ships with the following foundational dependency versions:

  • Java 21 minimum baseline

  • Groovy 4.0.32

  • Spring Framework 7.0.8

  • Spring Boot 4.1.0

  • Gradle 9.6.0

  • Spock 2.4-groovy-4.0

See the Grails BOM dependency table for the complete managed dependency set, including the Hibernate and Micronaut BOM variants.