In this blog I want to share how can we customize home page in a Grails application.
In grails, the default homepage is the web-app/index.gsp if we explicitly don`t specify any thing; but of-course that is not sufficient for all apps. We need to have a custom landing page instead of the default page provided by grails.
This can be easily achieved by modifying the URL mappings in UrlMappings.groovy file.
"/" { controller = "yourController" action = "yourAction" }
By configuring the URLMappings this way, the home-page of the app will be yourWebApp/yourController/yourAction.
Hope this helps.
-Pradeep Garikipati
This entry was posted
on August 17th, 2008
at
7:55 pm and is filed under
Grails, Groovy .
You can follow any responses to this entry through the
RSS 2.0 feed.
You can leave a response, or trackback from your own site.

Thanks, just what I was looking for…
Cheers
Olivier
Hello,
It seems this doesn’t work for Oracle Weblogic 11g.
Any ideas what is the correct config for Oracle Weblogic 11g?
Thanks!
I like assembling useful info, this post has got me even more info!
It seems it’s also not working in my case (version 2.1.0). Which Grails version are you assuming? This syntax is incompatible with the syntax in the present UrlMappings.groovy, where the line related to appwebroot is:
“/”(view:”/index”)
Can you please provide a COMPLETE example?
It works just fine on Version 2.1.0. There are different formats available whether you are directing to views or controllers.. An example working:
“/” {
controller = “admin”
action = “index”
}