how to make a jsp page threadsafe?
Answers were Sorted based on User's Feedback
Answer / john
There is an attribute in page directive
element "isThreadSafe", assign false to this, so that the
jsp container sends the client request one at a time to the
jsp page.
<%@page isThreadSafe="false"%>
| Is This Answer Correct ? | 23 Yes | 7 No |
Answer / krishna chowdary garapati
JSP Threadsafe is used to send only one request for
processing.
It implements SingleThreadModel Interface.
In JSP,
The Page dircetive defines an attribute "isThreadSafe"
whose values are true|false.
If the value is set to 'true' the container can send
multiple concurrent requests to the JSP page. The default
value is 'true'
If the value is set to 'false' the container can only send
one request at a time to the JSP page which makes the JSP
ThreadSafe.
SYNTAX:
<%@ page isThreadSafe="true|false" %>
| Is This Answer Correct ? | 7 Yes | 1 No |
What is scriptlet tag?
How did you implement caching in jsp?
What is the difference between Java Servlet & JSP?
How is jsp used in the mvc model?
How can I prevent the output of my jsp or servlet pages from being cached by the browser?
What is welcome file list?
What is the <jsp:forward> standard action?
Explain the difference between jspwriter and servlet printwriter in jsp?
How can we retrieve warnings?
What is the need for jsp?
Is it possible to share an httpsession between a jsp and ejb? What happens when I change a value in the httpsession from inside an ejb?
What is the jspinit() method?