Allow developers to customize the app directory#1157
Merged
rainboyan merged 1 commit intograceframework:2024.0.xfrom Aug 19, 2025
Merged
Allow developers to customize the app directory#1157rainboyan merged 1 commit intograceframework:2024.0.xfrom
app directory#1157rainboyan merged 1 commit intograceframework:2024.0.xfrom
Conversation
Grails employs a structured directory layout that organizes files and folders based on their functionality, which is essential for maintaining code in a large application. The `app` directory is central to a Grails application, containing subdirectories for domains, services, views, controllers, taglibs and assets, which follow the MVC architectural pattern. In the past, Grails has always adhered to the convention of using `grails-app` as a fixed directory since its inception. In Grace, we can use `grails-app`, or the more concise `app`. Now, in the upcoming Grace 2024 version, we take it a step further by allowing developers to customize this directory. You are free to choose a more suitable specific directory, such as `web`, `admin`, `api`, or `store`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Grails employs a structured directory layout that organizes files and folders based on their functionality, which is essential for maintaining code in a large application. The
appdirectory is central to a Grails application, containing subdirectories for domains, services, views, controllers, taglibs and assets, which follow the MVC architectural pattern. In the past, Grails has always adhered to the convention of usinggrails-appas a fixed directory since its inception. In Grace, we can usegrails-app, or the more conciseapp. Now, in the upcoming Grace 2024 version, we take it a step further by allowing developers to customize this directory. You are free to choose a more suitable specific directory, such asweb,admin,api, orstore.