InterviewSolution
Saved Bookmarks
| 1. |
How Can I Implement A Thread-safe Jsp Page? |
|
Answer» 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. 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. |
|