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

What happens when a page is statically included in another jsp page?

0 Answers  


What is a jsp directive?

0 Answers  


How to works asjx in jsp?

1 Answers  


How do I mix jsp and ssi #include?

0 Answers  


Can a jsp page instantiate a serialized bean?

0 Answers  






Is jsp technology extensible?

0 Answers  


Explain the uses of jsp?

0 Answers  


Can we define a class inside a jsp page?

0 Answers  


What is jsp and why is it needed?

0 Answers  


What does it mean when tags or attributes are said to be deprecated?

0 Answers  


Why do we need custom tags?

0 Answers  


What are stored procedures? How is it useful?

0 Answers  


Categories