How do I get to the Config.groovy information from a domain object, or from a static scope? I'm using ConfigurationHolder.config.* now, but that and ApplicationHolder are deprecated so I'd like to 'do it right' ... but the grailsApplication object isn't available in a DO/static scope.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

I'd add the grailsApplication to the metaclass of domain classes - this is something I'm thinking about doing for 2.0 final. For now, put it in BootStrap.groovy, e.g.

class BootStrap {

   def grailsApplication

   def init = { servletContext ->
      for (dc in grailsApplication.domainClasses) {
         dc.clazz.metaClass.getGrailsApplication = { -> grailsApplication }
         dc.clazz.metaClass.static.getGrailsApplication = { -> grailsApplication }
      }      
   }
}

Then you can access the config from grailsApplication.config, and Spring beans via grailsApplication.mainContext.getBean('foo') or just grailsApplication.mainContext.foo.

link|improve this answer
Good idea ... but, startup fails with "Caused by: org.hibernate.InstantiationException: could not instantiate test objectqdcore.UserCallFlow" (qdcore.UserCallFlow is a domain class), as it appears Hibernate is doing something before the Bootstrap runs. To get around that, I use safe deref (e.g., grailsApplication?.config?.qdcore?.servers?.upload?.url ) so that Hibernate is happy, the Bootstrap gets to run, and then grailsApplication is available. Thanks! – Wayne Aug 8 '11 at 17:09
But, even with safe deref in the DO (def grailsApplication; def config=grailsApplication?.config; def String usrv = config?.qdcore?.servers?.upload?.url) I'm getting null values, so I'm not using it right, quite yet - I'll post back when I get myself sorted out ;) – Wayne Aug 8 '11 at 17:46
What works in the DO is to use the static scope for grailsApplication, and the instance scope for the rest; e.g.,class UCF { static grailsApplication; def config=grailsApplication?.config; def String usrv = config?.qdcore?.servers?.upload?.url ...} I can't use static scope for the others, since then I get exceptions that "grailsApplication" is null when I try to get its config property. This is a bit twitchy, perhaps, but it works for this prototyping app! – Wayne Aug 8 '11 at 18:40
Burt, please do include grailApplication in DCs in Grails 2.0, would be a convenient, concise, & useful addition – virtualeyes Oct 6 '11 at 6:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.