I’d like to create another resource bundle to organize my Grails app. Grails provides a ‘messages’ resource bundle and I need to create a ‘myApp’ resource bundle.
How can I create a new resource bundle and read its properties with the ‘g:message’ GSP tag?
You have to create a bean in grails-app/conf/spring/resources.groovy which will override the default MessageSource.
Note:
If you need to customize Grails, the only advise I can give you is to get familiar with the Spring framework (and specifically Spring-MVC) with the following links: