Is JSP Thread Safe ???? How To make JSP thrad safe ?????
Answers were Sorted based on User's Feedback
Answer / samba
By default JSP pages are not Thread safe.if we want to make
jsp page as thread sefe then the value of isThreadSafe
attribute is set to false, then the JSP container sends
client requests only one at a time to the JSP page which
makes the jsp page safe.
If isThreadSafe="true" then jsp is not a thread safe.this is
the default value.
If isThreadSafe="false" then jsp is a thread safe
Syntax:
<%@ page isThreadSafe="true|false" %>
| Is This Answer Correct ? | 30 Yes | 7 No |
Answer / samba
Jsp is not a thread safe.in order to make jsp as a thread
safe there is a attribute that is isThreadSafe="true"
| Is This Answer Correct ? | 10 Yes | 6 No |
Answer / nagendra
<% page isThreadSafe="false"%>
Then only jsp become ThreadSafe
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / ankur
BY DEFAULT THE JSP PAGE IS NOT SAFE FROM THREAD . IF YOU WANT TO MAKE SAFE THE JSP PAGE FROM THREAD YOU CAN USE THE STATEMENT
<% page isThreadSafe="false"%> USE BEFORE THE <HEAD>
:- THE JSP BY DEFULT VALUE IS
<%@ page isThreadSafe="true"%> THAT MEAN YOUR JSP PAGE IS NOT THREAD SAFE ...
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / venkat
by default jsp is not thread safe.
if we want to make thread safe jsp use this statement
<%@ page isThreadSafe="true"%>
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / venkat
by default jsp is not thread safe.
if we want to make thread safe jsp use this statement
<%@ page isThreadSafe="true"%>
| Is This Answer Correct ? | 1 Yes | 4 No |
Explain request dispatcher and its methods.
Can you call a jsp from the servlet?
What is difference between server and servlet?
Hi frnd can i any one kindly can post for me portlet,hibernate and spring example application and with flow explantion configuration using Jdeveloper.and related links ar tutorials kindly please send me .its urgent for me .thanks in advance...........else can any one send to kondaiah.goddeti@gmail.com
What is servlet context ?
What exactly is a servlet?
Whether thread can be used in servlets?
What is the purpose of dispatcherservlet properties?
Is it possible to have a constructor inside the servlet?
A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?
How can we include static files in the jsp page?
What are the phases of the servlet life cycle?