Create Property files in grails and display content in main.gsp layout -
how , create property file in grails , have display content of property file in main.gsp(layout)
you can store message in grails-app/i18n/messages.properties
, use g:message
tag, like:
<g:message code="my.message.code" />
see docs: http://grails.org/doc/latest/ref/tags/message.html