Hi
I've just been reading Ted Husted et al's
Struts in Action book and in here it states that Struts only creates one Action object per Action class and re-uses the instance for subsequent requests that map to this action, i.e a singleton, it then says that this provides for optimum thru put.
I may have got the wrong end of the stick here but I can see how this helps in terms of resource usage but won't this cause a bottleneck where many users are accessing the same action rather than helping throughput and also doesn't it introduce
thread safety issues into the design of the action class itself?
TIA Graham