JSP is by default thread safe or not? what is the meaning of
isThreadSafe="true" and isThreadSafe="false". Explain it?
Thanks,
Seenu
Answer Posted / bijay
<%@ page isThreadSafe="true" %> means you are specifying that the JSP page is thread-safe and hence, Container should create one Servlet instance and use it to handle mulitple client requests.
On the other hand, <%@ page isThreadSafe="false" %> means you are specifying that the JSP page is not thread-safe, so th Container should take necessary precaution. Container does this by queueing up requests and handling them one at a time.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
why an outer class cannot be declared as private?
What is string made of?
What is variable and rules of variable?
What is the vector class in java programming?
What is the reflection?
What is floor in java?
Is null function in java?
Why spring singleton is not thread safe?
What is lazy initialization in java?
What is class level lock ?
which is advanced deep technology in java launched by the sun microsystem??? The answer is very logical If u need correct answer mail me at priya_gupta@gmail.com
Explain jvm, jre, and jdk?
Name few java.lang classes introduced with java 8 ?
What is difference between module and function?
Can a constructor call another constructor?