when they say the action controller in the struts framework is multi threaded, does it mean that there are multiple instances of the servlet taking the request and forwarding it to the model. OR does it mean that there is one single instance taking all the requests? Any visuals will be appreciated
when they say the action controller in the struts framework is multi threaded, does
Share
As per most other servlets, a separate thread is created to process each request. You have to implement the
SingleThreadedModelinterface to get a new instance of the servlet for each request.