Allow the definition of resourcebundle by name as in faces-config.xml file
--------------------------------------------------------------------------

                 Key: MYFACESTEST-41
                 URL: https://issues.apache.org/jira/browse/MYFACESTEST-41
             Project: MyFaces Test
          Issue Type: Improvement
          Components: Mock Objects
    Affects Versions: 1.0.1
            Reporter: Rudy De Busscher


In some projects, we need programmaticly access to the resourceBundle defined 
in the faces-config.xml.

java code:
        FacesContext context = FacesContext.getCurrentInstance();
        Application application = context.getApplication();
        ResourceBundle rb = application.getResourceBundle(context, "msg");

faces-config.xml :
        <resource-bundle>
            <base-name>org.apache.myfaces.test.messages</base-name>
            <var>msg</var> 
        </resource-bundle>

If during a test, the code is called that looks up the resource bundle, a 
NullPointerException is throw since the resouce bundle isn't found.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to