up vote 14 down vote favorite
8
share [g+] share [fb]

in Config.groovy I see this:

// set per-environment serverURL stem for creating absolute links
environments {
    production {
        grails.serverURL = "http://www.changeme.com"
    }
}

what is the correct way to access that at runtime?

link|improve this question

feedback

2 Answers

up vote 19 down vote accepted

danb is on the right track. However, life gets a bit easier on your fingers if you do a nicer import:

import org.codehaus.groovy.grails.commons.ConfigurationHolder as CH
println CH.config.grails.serverURL
link|improve this answer
very nice.. i was completely unaware of that feature, which I will call import aliasing. – danb Oct 13 '08 at 18:33
feedback

here it is:

import org.codehaus.groovy.grails.commons.ConfigurationHolder
println ConfigurationHolder.config.grails.serverURL

alternatively, in controllers and tags, apparently this will work:

grailsApplication.config.grails.serverURL

I needed it in BootStrap, so option 1 was what I needed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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