Josh wrote:
> The ActionServlet seems to be keeping a lot of state data. It is keeping
> collections of Action and ActionFormBean objects. When one of these objects is
> instantiated the ActionServlet holds onto it. Is only one copy of these
> objects kept for the entire application or are these objects kept per user?
The answer depends on which specific objects you are talking about, but
in general
the things that the ActionServlet maintains are in existence only once.
For
example, there is a single collection of Actions, a single collection of
ActionMappings, a single collection of ActionFormBeans, a single
application
resources object, and so on.
>
> Thanks,
> Josh
Craig McClanahan