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?
|
3
|
in Config.groovy I see this:
what is the correct way to access that at runtime?
|
||
|
|
|
|
danb is on the right track. However, life gets a bit easier on your fingers if you do a nicer import:
|
|||
|
|
|
here it is:
alternatively, in controllers and tags, apparently this will work:
I needed it in BootStrap, so option 1 was what I needed. |
|||
|
|