Reputation: 1082
I am looking for a best practise on how to organise grails GSP, and also on how to manage GSP extensions. I am working on an application where I need to create my own GSP HTML elements as well as override standard GSP elements and I would like to know how to organise them.
My consideration is to write a Grails Plugin which has its own Taglib with my own namespace. And creating all the elements that I need and also override the existing ones.
Are there any good examples out there on how to organise things like that?
Upvotes: 0
Views: 108
Reputation:
I agree that taglibs is the best place for GSP customizations. Even the Grails Website have their own tags. Some points that I can remember now:
GroovyPagesTestCase
Upvotes: 0