Explain Thread-Safe JSP page and there advantages »
By Ramakrishna on Sep 30, 2008 in Using the Thread-Safe in Jsp | 0 Comments
Q) How can I implement a thread-safe JSP page? What are the Advantages and Disadvantages of using it?
A) You can make your JSPs thread-safe by having them implement the SingleThreadModel interface. This is done by adding the directive
<%@ page isThreadSafe=”false” %> within your JSP page.
With this, instead of a single instance of the servlet [...]
