vote up 0 vote down star

Hi,

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 ?

Thanks a lot.

flag

80% accept rate

1 Answer

vote up 2 vote down check

You have to create a bean in grails-app/conf/spring/resources.groovy which will override the default MessageSource.

// Place your Spring DSL code here
beans = {
      messageSource(org.springframework.context.support.ReloadableResourceBundleMessageSource) {
        basename = "classpath:grails-app/i18n/myApp"
    }
}

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:

link|flag
Thanks a lot again for your explanation! I'm able to change the bundle name now but I still have somme problem to define more than one bundle. As the Spring MVC documentation is describing we can pass a list of bundle: <property name="basenames"> <list> <value>format</value> <value>exceptions</value> <value>windows</value> </list> </property> But how to pass a list in the groovy/grails way ? I tried to do basename = ["classpath:grails-app/i18n/myApp" ,"classpath:grails-app/i18n/messages"] but I got an error. Do you have any idea how to pass a list? Thx! – Cirius Oct 6 at 13:32
As you wrote it, you can pass a list of bundle with the property name "basenames". So to pass it in resources.groovy, you should use: basenames = ["classpath:grails-app/i18n/myApp", "classpath:grails-app/i18n/messages"]. :D – rok Oct 6 at 14:50
hoo ok I got it! The 's' that changes everything ;) Thank you so much you rocks! – Cirius Oct 6 at 17:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.