fbeauregard
Sep 8th, 2004, 02:33 AM
The integration of Webwork2 and PicoContainer (found in NanoContainer) creates a container hierarchy (Application, Session, Request).
Actions are registered in the request container (a new container is created for every request) and therefore can have dependencies on components defined at all levels.
I am not fully sure about the usefullness of the request container vs the potential overhead but I certainly find it usefull to have a container per session.
Actions could be defined as prototypes in the session container (or automatically registered as beans with autowiring?). This allows to have singleton components per session and dependency resolving is done independently of the scope. I suppose this would involve a ServletContextListener to listen for session creation and expiration.
Is it possible do that currently in Spring?
Anyone tried to do something like this?
Regards,
François
Actions are registered in the request container (a new container is created for every request) and therefore can have dependencies on components defined at all levels.
I am not fully sure about the usefullness of the request container vs the potential overhead but I certainly find it usefull to have a container per session.
Actions could be defined as prototypes in the session container (or automatically registered as beans with autowiring?). This allows to have singleton components per session and dependency resolving is done independently of the scope. I suppose this would involve a ServletContextListener to listen for session creation and expiration.
Is it possible do that currently in Spring?
Anyone tried to do something like this?
Regards,
François