https://github.com/graceframework/grace-scaffolding
Plugin that generates scaffolded controllers and views
https://github.com/graceframework/grace-scaffolding
graceframework groovy plugin scaffolding
Last synced: 3 months ago
JSON representation
Plugin that generates scaffolded controllers and views
- Host: GitHub
- URL: https://github.com/graceframework/grace-scaffolding
- Owner: graceframework
- License: apache-2.0
- Created: 2023-11-29T16:48:47.000Z (almost 2 years ago)
- Default Branch: 7.0.x
- Last Pushed: 2025-07-15T02:04:36.000Z (3 months ago)
- Last Synced: 2025-07-15T06:33:00.517Z (3 months ago)
- Topics: graceframework, groovy, plugin, scaffolding
- Language: Groovy
- Homepage: https://graceframework.org/grace-scaffolding/latest/
- Size: 1.21 MB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/graceframework/grace-scaffolding/actions?query=workflow%3A%Grace+CI%22)
[](https://opensource.org/licenses/Apache-2.0)
[](https://search.maven.org/search?q=g:org.graceframework)
[](https://graceframework.org/grace-scaffolding/latest/)
[](https://x.com/graceframework)[](https://groovy-lang.org/releasenotes/groovy-4.0.html)
[](https://github.com/graceframework/grace-framework/releases/tag/v2024.0.0-M1)
[](https://github.com/spring-projects/spring-boot/releases/tag/v3.4.7)# Grace Scaffolding
Grace Scaffolding and [Fields](https://github.com/graceframework/grace-fields) plugin work together will make you more productive.
Grace Scaffolding lets you generate some basic CRUD interfaces for a domain class, including:
* GSP views
* Controller actions for create/read/update/delete (CRUD) operations
you can set the `scaffold` property in the Controller to a specific domain class to use Dynamic scaffolding:
```groovy
class BookController {
static scaffold = Book
}
```Grace CLI provides some useful commands to do this job quickly,
```bash
$ grace generate-all Book
$ grace generate-async-controller Book
$ grace generate-controller Book
$ grace generate-views Book
$ grace create-scaffold-controller Book
```## Versions
To make it easier for users to use and upgrade, Plugin adopts a version policy consistent with the [Grace Framework](https://github.com/graceframework/grace-framework).
| Plugin Version | Grace Version |
|----------------|---------------|
| 7.0.x | 2024.0.x |
| 6.3.x | 2023.3.x |
| 6.2.x | 2023.2.x |
| 6.1.x | 2023.1.x |
| 6.0.x | 2023.0.x |
| 5.2.x | 2022.2.x |
| 5.1.x | 2022.1.x |
| 5.0.x | 2022.0.x |## Ducumentation
* [7.0.x](https://graceframework.org/grace-scaffolding/7.0.x/)
## License
This plugin is available as open source under the terms of the [APACHE LICENSE, VERSION 2.0](http://apache.org/Licenses/LICENSE-2.0)
## Links
- [Grace Framework](https://github.com/graceframework/grace-framework)
- [Grace Plugins](https://github.com/grace-plugins)