answersLogoWhite

0

No. JSPs are not thread safe by default

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Basic Math
Related Questions

Is Servlet instance Thread safe If not how can you make thread safe?

No. The Servlet is not thread-safe by default. You can make it thread safe by implementing the SingleThreadedModel interface


What is the default priority of background thread in java?

Medium priority


What is the importance of thread?

thread is a light weight program . concurrent execution of code can be done by usin threads.thread is a part of the program.


What are jsp actions?

JSP actions are XML tags that direct the server to use existing components or control the behavior of the JSP engine. JSP Actions consist of a typical (XML-based) prefix of "jsp" followed by a colon, followed by the action name followed by one or more attribute parameters. There are six JSP Actions: < jsp : include / > < jsp : forward / > < jsp : plugin / > < jsp : usebean / > < jsp : setProperty / > < jsp : getProperty / >


Is thread safe for parrots?

If it is large enough.


What is thread safe object?

A thread safe object is one that would be safe even if multiple thread instances are accessing it. For example if a single object is being updated by a thread and the same object is being read by another thread - we will end up with an inconsistency where the reading object is reading incorrect data because by the time it finishes reading, another thread would've updated it. So we use the keyword synchronized with methods to ensure that such a situation does not happen. An object that wont let two threads access it simultaneously is called a thread safe object


What is acronym of jsp?

JSP stands for Java Server Pages


How to Update data from jsp into database?

can i get update coding in jsp??


What is full from JSP?

JSP stands for Java Server Pages


What does jsp mean?

jsp means Java Server Pages.


When was JSP Records created?

JSP Records was created in 1978.


How can a Servlet call a JSP error page?

Declare That a JSP Page Is an Error PageThe isErrorPage attribute tells the container if the current page is available to be an error page for another JSP page (the current page is the URL in another page's errorPage attribute). Ex:If this attribute is set to "true" then the variable "exception" is available to you. Otherwise (default is "false"), if you try to reference the exception, you will get a fatal error.So, when a Servlet request being forwarded to a JSP Page faces an exception/error this error page would get called.