What is the right way to populate the model for the index page in a grails app? There is no IndexController by default, is there some other mechanism for getting lists of this and that into the model?
|
|
I won't claim that this is the right way, but it is one way to start things off. It doesn't take much to have a controller be the default. Add a mapping to UrlMappings.groovy:
Then add an index action to the now default controller:
If what you want to load is already part of another action simply redirect:
Or to really get some reuse going, put the logic in a service:
|
||
|
|
|
I couldn't get Ed T's example above to work. Perhaps Grails has changed since then? After some experimentation and some rummaging on the net, I ended up with this in
My HomeController looks like this:
And in |
||
|
|
|
|
The good answer: If you need to populate a model for the index page, it's time to change from using a straight index.gsp to an index controller. The evil answer: If you create a filter whose controller is '*', it'll get executed even for static pages. |
||
|
|
