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
What is difference between custom jsp tags and beans?
What is jstl (jsp standard tag library)?
What is the _jspservice() method?
How do you prevent the creation of a session in a jsp page and why? What is the difference between include directive & jsp:include action?
What's the difference between javabeans and taglib directives?
What are the different jsp element types?
What are the attributes on page directives?
Explain JSP directives.
What is the
How is jsp include directive different from jsp include action. ?
Can we override jsp service method?
What are the ways to insert java code into jsp page?
How can automatic creation of session be prevented in a jsp page?
Explain the advantages in jsp?
Which attribute specifies a jsp page that should process any exceptions thrown but not caught in the current page?