vote up 2 vote down star
1

What is the configuration setting for modifying the default homepage in a Grails application to no longer be appName/index.gsp? Of course you can set that page to be a redirect but there must be a better way.

flag

3 Answers

vote up 2 vote down check

HTH - not a Grails developer but run across that link while looking for something else.

link|flag
vote up 0 vote down

Edit UrlMappings.groovy

Add for example add this rule, to handle the root with a HomeController.

"/"(controller:'home')

link|flag
vote up 1 vote down

Add this in UrlMappings.groovy

 "/"
 {
    controller = "yourController"
    action = "yourAction"
 }

By configuring the URLMappings this way, the home-page of the app will be yourWebApp/yourController/yourAction.

(cut/pasted from IntelliGrape Blog)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.