DEVFYI - Developer Resource - FYI

How can I implement a thread-safe JSP page?

JSP Interview Questions and Answers


(Continued from previous question...)

30. How can I implement a thread-safe JSP page?

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.

(Continued on next question...)

Other Interview Questions