Hi all,
Are there any cons in creating a new ApplicaitonContext each time the application processes a request? The reason I want to do that is because the beans created (usually a service) contain state information that I want to keep (but not share across different requests due to threading issues) until the request is completed. I could make the bean a prototype but then I would have to managed the life cycle myself.
Thanks,
Vincent


Reply With Quote