Search Interview Questions
Question: What is Instance pooling?
Answer: For SingleThreadModel servlets, containers may follow one of the following approaches to ensure that each sevlet instance is invoked in a separate thread:
Instance Pooling :
in this approach, the container maintains a pool of servlet instances. For each incoming request, the container allocates a servlet instance from the pool, and upon completion of the service, the container returns the instance to the pool.
Request Serialization :
in this approach, the container maintains a single instance of the servlet. However since the container cannot send multiple requests to the instance at the same time, the container serialize the requests. This means that new requests will be kept waiting while the current request is being served.
a combination of these two approaches is more pragmatic, so that the container could maintain a reasonable member of instances in the pool, while still serializing requests if the number of requests exceeds the number of instance in the pool.
_____________________
Submitted by abhishek trivedi (imabhishekin@gmail.com)
|
|||||||||||
Question: What is Instance pooling?
Answer: For SingleThreadModel servlets, containers may follow one of the following approaches to ensure that each sevlet instance is invoked in a separate thread: If you have the better answer, then send it to us. We will display your answer after the approval Rules to Post Answers in CoolInterview.com:-
|
Related Questions | ||
What is the difference between HTTPSession and Stateful Session Bean? |
|
|
How do you check whether the session is active in Stateful session bean? |
|
|
What is the difference between find and select methods in EJB? |
|
|
What are the optional clauses in EJB QL? |
|
|
What is handle in EJB? |
|
|
What is the difference between JNDI context, Initial context, session context and ejb context? |
|
|
What is the difference between sessioncontext and entitycontext? |
|
|
What is the difference between EAR, JAR and WAR file? |
|
|
What is deployment descriptor? |
|
|
What is CMR? |
|
|
What is the difference between CMP 1.1 and CMP 2.0? |
|
|
What is the difference between optimistic locking and pessim |
|
|
What is lazy loading? |
|
|
What are the services provided by container? |
|
|
How will you propagate exception thrown inside session bean to JSP or Servlet client? |
|
|
If session has thrown ApplicaitonException would you use EJBContext.setRollBackOnly method? |
|
|
Is Decorator an EJB design pattern? |
|
|
If i throw a custom ApplicationException from a business method in Entity bean which is participating in a transaction, would the transaction be rolled back by container. Does container rolls back transaction only in case of SystemExceptions? |
|
|
Can i map more than one table in a CMP? |
|
|
What are simple rules that a Primary key class has to follow? |
|
Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.
View All EJB Interview Questions & Answers - Exam Mode / Learning Mode
India News Network |