I'm trying to come up with a clean way of having a String resource bundle for my application, that contains my JSF labels etc and my messages and errors.

What I have is a 'Create Element' page that flows on save to a validate function.

    <transition on="save" to="validateElementCreate" validate="false" > 
        <evaluate expression="newElement.validate(messageContext)" /> 
    </transition>

My element validate function adds messages to the context it's provided but they are hard coded. So I want to pass a resource bundle in to the function with it.

My resource bundle is named "element_maintenance_msgs" so I tried to do this:

    <transition on="save" to="validateElementCreate" validate="false" > 
        <evaluate expression="newElement.validate(messageContext, 
                                                  element_maintenance_msgs)" /> 
    </transition>

which doesn't work becasue the resource bundle configured in faces-config.xml, isn't visible to the webflow.

What are my options for providing portability of the bundle?

link|improve this question

67% accept rate
I know nothing about Faces, and I know this is somewhat kludgey, but could you perhaps have Spring double-load the same resource bundle that Faces is loading? – dbreaux Mar 14 at 18:51
I couldn't do that because JSF will load the resource for a language based on the browser preferences so I need the actual one it's using. I've managed it though. – Glen Lamb Mar 15 at 11:27
FWIW, Spring has interceptors which also select the correct locale based on the browser preferences. – dbreaux Mar 15 at 14:44
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.