I'm currently using the resourceBundle variable to get text values in my JSF code e.g. like this:

<h:outputText value="#{resourceBundle.welcomeMessage}" />

Is there any way, to put the message key in a variable, and give it as a dynamic parameter to the resource bundle? I was hoping to be able to do something like this:

<c:set var="name" value="#{'welcomeMessage'}" />
<h:outputText value="#{resourceBundle.get(name)}" />
link|improve this question

75% accept rate
ResourceBundle.getString? – Tom Hawtin - tackline Feb 24 '11 at 12:31
feedback

3 Answers

up vote 1 down vote accepted

The resource bundle takes dynamic parameter. Here is snippet from my project:

    <f:loadBundle basename="#{siteName}" var="bundle"/>
        ....
               <h:dataTable value="#{summary.restrictionList}" var="restrictionList" cellspacing="0" cellpadding="0"> 
               ....

                            <h:outputFormat value="#{bundle['summary.label.blockcodemsg']}">
                                <f:param value="#{restrictionList['lastFourDigits']}"/>
                                <f:param value="#{bundle[restrictionList['optionDesc']]}"/>
                                <f:param value="#{bundle[restrictionList['optionResolutionDesc']]}"/>
                            </h:outputFormat>
     ....
link|improve this answer
feedback

Just create a dedicated ManagedBean with a method resolveKey(String key) from which call resourceBundle lookup and on view and use that bean.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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