Reputation: 6131
I am using grails 1.3.7. I have a Config.groovy
file that specifies a number of other groovy file locations for the grails.config.locations
property. I am unclear when these other files are parsed, so that I can use their information. At the time Bootstrap.groovy
executes, for example, these files do not appear to have been parsed. Where is this stuff documented?
Upvotes: 1
Views: 1596
Reputation: 30088
This stuff is documented in the Grails Configuration Documentation
In my experience, they should all be parsed by the time Bootstrap starts executing.
Upvotes: 1