In connection pool,when 100 clients are requesting, in pool
100 objects is there, when another client is making request
how it will work

Answers were Sorted based on User's Feedback



In connection pool,when 100 clients are requesting, in pool 100 objects is there, when another clie..

Answer / ballu

connection ojbect from one of the inactive client will be
saved (with its state) and freed up connection object will
be given to new request.

if all 100 clients are using connection objects actively
then depending on implentation either 101th client will
wait or server will spawn 101th connection object.

Is This Answer Correct ?    11 Yes 1 No

In connection pool,when 100 clients are requesting, in pool 100 objects is there, when another clie..

Answer / vrush

It will keep the client in waiting state .

Is This Answer Correct ?    0 Yes 3 No

In connection pool,when 100 clients are requesting, in pool 100 objects is there, when another clie..

Answer / mallikarjuna

i think client is waiting for the anyone return the object
to connectionpool

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Advanced Java Interview Questions

Give me simple example of hibernate caching and explain the details of caching????? thanks in adv.

1 Answers  


What is Introspection?

2 Answers  


When you will synchronize your code?

2 Answers  


the advantages of polymorphic

1 Answers  


how java is os independent language ?

3 Answers  


How substring() method of string class create memory leaks?

0 Answers  


What is there in browser that it supports web based applications of java or any other PL?

2 Answers  


Is “abc” a primitive value?

0 Answers  


What are the high-level thread states?

1 Answers  


What is synchronization and why is it important?

0 Answers  


What is servlet preinitialization

1 Answers   iFlex,


Is multiple try block is possible in single java Application......

3 Answers  


Categories