Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Grails, how do I redirect to my home page (index.gsp) which is not part of any controller?

share|improve this question

2 Answers

up vote 4 down vote accepted

You can do a redirect to '/' like this:

redirect(uri:'/')
share|improve this answer
This will only work if there's a UrlMapping for '/' to the index view. – doelleri Jun 21 '12 at 19:16
It will redirect to the root context of the site, however it happens to be defined is up to the application. The '/' mapping comes standard in URLMappings. – proflux Jun 21 '12 at 19:22

Why do you need a redirect instead of a render? redirect(uri:'/index.gsp') might do the trick but I think I would just render(view:'/index')

share|improve this answer
Be careful rendering index directly. It's okay with simple static content, once you add a controller to pull in data to display on the main page you'll be switching each of those render statements to redirects. Will that redirect(uri:'/index.gsp') give a 404? – proflux Jun 21 '12 at 19:15
Since he said it's not part of any controller I think it's safe to render it - but if it were to rely on a model from a controller action rendering the view would almost certainly end up throwing an exception due to accessing the missing model. – doelleri Jun 21 '12 at 19:18
1  
I'm looking down the road a bit. Most non-trivial apps I've developed start off with a static index.gsp and end up with something like [controller:'home', action:'index']. After going back and fixing a bunch of render(view:'/index') sprinkled throughout your apps and you feel compelled to help others avoid that mistake. If it's just a throw-away app then it's no big deal either way. – proflux Jun 21 '12 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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