How threads are implemented in servlets?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
During servicing any request the container will create a
thread or will get a thread from a thread pool.
| Is This Answer Correct ? | 3 Yes | 1 No |
internally the threads are implemented in servlets
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / prashant rajput
Web Container will create a Thread for each request!
| Is This Answer Correct ? | 0 Yes | 2 No |
init() method of servlet loaded by?
Hi friends, am newbie to servlet. My interviewer asked why used servlet in your application. i used servlet for controller logic and business logic . is it correct ?
How session tracking can be achieved, if your browser doesn't support cookies (or) if cookies are disabled?
Hi Friends, Can we make any method thread safe withour synchronized keyword?
How do you communicate in between Applets and Servlets?
Explain servlet events?
What is the difference between RequestDispatcher and sendRedirect?-
What are the different ways we can maintain state between requests?
What if you need to span your transaction across multiple servlet invocations?
What are the steps involved in placing a servlet within a package?
can it possible to validate form field before execution of a servlet service method if yes how??
Is servlet thread safe?