In the Servlet 2.4 Specification SingleThreadModel has been Deprecated, why
Because it is not practical to have such model. Whether you set isThreadSafe to true or false, you should take care of concurrent client requests to the JSP page by synchronizing access to any shared objects defined at the page level. In the Servlet 2.4 specification, the SingleThreadModel interface was deprecated due to several reasons, … Read more