how to make a jsp page threadsafe?

Answers were Sorted based on User's Feedback



how to make a jsp page threadsafe?..

Answer / john

There is an attribute in page directive
element "isThreadSafe", assign false to this, so that the
jsp container sends the client request one at a time to the
jsp page.
<%@page isThreadSafe="false"%>

Is This Answer Correct ?    23 Yes 7 No

how to make a jsp page threadsafe?..

Answer / 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

More JSP Interview Questions

Why is _jspservice () method starting with an '_'?

0 Answers  


Which syntax is used to comment jsp?

0 Answers  


How can I override the jspinit() method within a jsp page?

0 Answers  


What are the jsp lifecycle phases?

0 Answers  


How can I handle jsp page errors?

0 Answers  






Explain handling of runtime exceptions.

0 Answers  


How to comment out jsp code?

0 Answers  


What is tld in jsp?

0 Answers  


How does a servlet communicate with a jsp page?

0 Answers  


How can information from one JSP be passed to another JSP?

0 Answers  


What are standard actions in JSP?

0 Answers  


How is jsp better than servlet technology?

0 Answers  


Categories