JSF 2.3 Injecting the application map

In code


    @ApplicationMap
    @Inject
    Map applicationMap;
        

In words you can now inject the application map for use in your CDI managed bean.

Posted October 15, 2014

Up