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 do you know about jsp tags? Explain how you understand the action tag and jsp action elements.
Which jsp life cycle is in correct order?
How to run java program in jsp page?
Explain the difference between include directive and include action in jsp?
How do I include static files within a jsp page?
How to include a jsp file in another jsp file?
Which jsp implicit objects are thread safe?
Is jsp front end or backend?
How can information from one JSP be passed to another JSP?
Is there a way to reference the "this" variable within a jsp page?
Explain implicit objects in jsp?
What is contextpath in jsp?
How can my application get to know when a httpsession is removed?
Explain the jsp implicit objects?
When will container initialize multiple jsp/servlet objects?