Difference between view and template in Grails

10,168

Basically Template is a (reusable) part of a View. Useful for splitting View into logical parts and/or for reusing same code from different views.

So, if you're rendering a whole page - use View. If you need just a small part - use Template.

See docs for Views and Templates - http://grails.org/doc/latest/guide/theWebLayer.html#viewsAndTemplates

Share:
10,168
More Than Five
Author by

More Than Five

Updated on June 17, 2022

Comments

  • More Than Five
    More Than Five almost 2 years

    In a Grails app, I am trying to figure out when to use a view and when to use a template for a gsp. Are there any obvious reasons? Or does it just come down to reuse?