Visme
Visme

Reputation: 983

Create Property files in grails and display content in main.gsp layout

How and where to create property file in grails and i have to display the content of property file in main.gsp(Layout)

Upvotes: 2

Views: 406

Answers (1)

Igor Artamonov
Igor Artamonov

Reputation: 35961

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

Upvotes: 2

Related Questions