Answer Posted / 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 |
Post New Answer View All Answers
How do I mix jsp and ssi #include?
How can you include the results of another page?
What is jsp custom tag and what are it’s components?
How can I use jsp in the mvc model?
Explain the difference between include directive and include action in jsp?
Mention the various implicit objects used in the expression
When destroy method of jsp is called?
Which jsp methods can be overridden?
What are the steps involved in reading data from a form using jsp?
What are the features of jsp?
What are jsp el implicit objects and how it’s different from jsp implicit objects?
Is jsp server side or client side?
Can a jsp page process html form data?
How can the output of JSP or servlet page be prevented from being cached by the browser?
What are the components of jsp?