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 server side programming language?
Why jsp is used instead of html?
List all tags that are provided in jstl?
How to deactivate el on jsp?
What are request and response objects?
How to include static files in a JSP page?
How does response sendredirect work?
how can i update the marque in jsp without changing the sourse code
How do I use sendredirect?
What are directives? What are the different types of directives available in jsp?
How can I prevent the output of my jsp or servlet pages from being cached by the browser?
How many tags are there in jsp?
What is session scope?
What is jsp net?
What is a declaration?