How and where to create property file in grails and i have to display the content of property file in main.gsp(Layout)
You can store message in grails-app/i18n/messages.properties
and use g:message
tag, like:
<g:message code="my.message.code" />
See docs: http://grails.org/doc/latest/ref/Tags/message.html