(Quick Reference)

scaffolding

Purpose

The scaffolding plugin configures Grails' support for CRUD via scaffolding.

Examples

An example of enabling "dynamic" scaffolding:

class BookController {
   static scaffold = Book   // static scaffold = true  form is not supported in grails 3.0 and above
}

Description

Refer to the section on scaffolding in the Grails user guide which details Grails' scaffolding support.