Grails Goodness: Access Action and Controller Name in GSP
Join the DZone community and get the full member experience.
Join For FreeIn our GSP views we can see the name of the action and controller that resulted in the view. We can use this for example to show or hide certain information based on the values for the action and controller name. Grails injects the variables actionName and controllerName automatically and sets the values based on the action and controller.
// File: grails-app/controller/com/mrhaki/sample/ViewController.groovy package com.mrhaki.sample class ViewController { def index = {} }
<%-- File: grails-app/views/view/index.gsp --%> <html> <head> <title>GSP Sample</title> </head> <body> <h1>Action and Controller Name</h1> <ul> <li>controllerName: <strong>${controllerName}</strong></li> <li>actionName: <strong>${actionName}</strong></li> </ul> </body> </html>
When we open the GSP we get the following output:
From http://mrhaki.blogspot.com/2011/11/grails-goodness-access-action-and.html
Grail (web browser)
Opinions expressed by DZone contributors are their own.
Comments