Link to home
Start Free TrialLog in
Avatar of Mandar1105
Mandar1105Flag for India

asked on

Pooling mechanism to be used in J2EE projects

Can somebody help me in identifying pooling mechanism to use in application?
Resource pooling such as connection pooling is available through different ways - application server, ORM (Hibernate) are known to me.
Any other ways available?
and which is the best way? why?
Avatar of rajesh_bala
rajesh_bala
Flag of India image

Its a common feature given by most of the application servers. I would prefer going with application-server pooling mechanism (until I know for sure that the performance bottleneck is due to this pooling).
ASKER CERTIFIED SOLUTION
Avatar of n_sachin1
n_sachin1
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I would probably suggest configuring the resource pooling specific to individual application. In this case, the ideal way would be configuring it as part of hibernate properties rather at an application level. This would help us to individually configure the resource pooling and run multiple applications on a single application sever based on the different needs and environment of the different applications.

make sense?