I'd like to register/add a Managed Bean class programmatically (from within a Servlet init()) into application scope. How can I do that with JSF 1.2?
|
feedback
|
So, it concerns a non-JSF request. The It's good to know that JSF application scoped managed beans are basically stored as an attribute of the
That's it. It'll be available in JSF by | |||
|
feedback
|
|
It is unlikely that can do do this in a programmatic manner from your application for managed beans of all scopes. BalusC has already pointed out how to do this for application scoped managed beans. Having taken a look at how managed beans are registered in Mojarra 2.1 (a JSF 2.1 implementation); there isn't a lot of lot of elegant options available for programmatic registration of session and request scoped beans. Simply put, you either have to invoke the implementation specific classes, or you will have to create and destroy i.e. manage the beans yourself instead of relying on the JSF implementation to do this. Populating the request and session scopes with the beans (the unmanaged way) Note - This is referred to as the "unmanaged way" because you are constructing the beans, and not the container. Annotations like EL expressions are always evaluated at runtime, so it gives you enough opportunity to populate the scope with the beans before evaluation (which allows for shooting yourself in the foot, if you have the chance to do so). In Mojarra (and possibly other JSF implementations), the EL resolver will rely on the services of a ScopeHandler (or an equivalent class) to resolve the EL expression values. Mojarra uses the classes You can populate the contents of the Session and Request scopes after after a new session is created, or before a request is processed by the JSF implementation. Session scope population can be done (ideally using a
The In a similar manner, you can populate the request scope (ideally done in a filter) using:
If you need to understand how this works, you should take a look at the classes Using the Mojarra classes to register the beans Registration of managed beans in the Mojarra implementation is done by the
There is a caveat with the above approach. It is unlikely that this approach will work in the init method of
You must still watch out for quirks arising out of this mechanism as it is quite possible that some of the Mojarra classes and instances would not have been loaded or initialized before your Servlet. I would therefore suggest loading attempting to configure your servlet with a | |||||
feedback
|
|
Try Edit: To register the bean, try calling: | |||||||||
feedback
|