Grails Goodness: Get GrailsApplication and ApplicationContext in GSP
Several variables are injected to Groovy Server Pages (GSP) in a Grails application. Two of them are the ApplicationContext and GrailsApplication objects. They are bound to the variables applicationContext and grailsApplication.
When we have access to the ApplicationContext we could for example load resources or get references to beans in the context. Via the grailsApplication variable we have access to for example the configuration values and metadata of the application.
<%-- File: grails-app/views/view/index.gsp --%>
<html>
<head>
<title>GSP Sample</title>
</head>
<body>
<h1>ApplicationContext</h1>
<dl>
<dt>applicationContext</dt>
<dd>${applicationContext}</dd>
<dt># beans</dt>
<dd>${applicationContext.beanDefinitionCount}</dd>
<dt>beans</dt>
<dd>${applicationContext.beanDefinitionNames.join(', ')}</dd>
</dl>
<h1>GrailsApplication</h1>
<dl>
<dt>grailsApplication</dt>
<dd>${grailsApplication}</dd>
<dt>configuration</dt>
<dd>${grailsApplication.config}</dd>
<dt>metadata</dt>
<dd>${grailsApplication.metadata}</dd>
</dl>
</body>
</html>
When we open this GSP in our browser we get the following output:
Read from Source
| Print article | This entry was posted by admin on November 28, 2011 at 05:11, and is filed under Java. Follow any responses to this post through RSS 2.0. Both comments and pings are currently closed. |
Comments are closed.
