mfaine wrote:
What is the best way to pass around request scope managed beans?
I have managed beans that needs to populated using values from other (previous) request scope managed beans. The beans have to be request scoped in order for the application to work correctly.
I have implemented a session scoped bean cache for such purposes... Where beans can be dropped in and removed on purpose...
(Currently as a size limited fifo cache, so that I dont run into memory issues, a timed cache also would be feasable)

