I've grabbed the latest Grails 2.0 milestone, and I'm now seeing a deprecation warning for the ConfigurationHolder class:
org.codehaus.groovy.grails.commons.ConfigurationHolder
The deprecation message simply says "Use dependency injection instead" which isn't very helpful :). I understand dependency injection etc, but how can I wire up a bean with the proper Grails config so I can access it at runtime? I need to access the config from places other than my Controllers and Tags (ie BootStrap).
Thanks!