Using GrailsApplication in UrlMappings.groovy

As of the current version of Grails we are using (2.0.1), the grailsApplication bean is not available for use in the UrlMappings class. However, the UrlMappingsHolderFactoryBean implements GrailsApplicationAware, so we can call getGrailsApplication() to do things such as base or mappings conditional on the configuration, like as follows:

class UrlMappings {
	
	static excludes = [...]

	static mappings = {
		if(getGrailsApplication().config.doA) {
			"/**" (view: '/a')
		} else {
			"/**" (view: '/b')
		}
	}
}
This entry was posted in Grails, Groovy and tagged , , , . Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.