Thread Safe JSP Pages

Q

How can I implement a thread-safe JSP page?

✍: FYICENTER.com

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.

2007-04-03, 6237👍, 0💬