开发者

What's the difference between Tomcat JNDI based and Spring/Hibernate DS based connection pooling

开发者 https://www.devze.com 2022-12-21 19:48 出处:网络
I have been looking into connection pool options and it is somewhat unclear to me what the differences in Tomcat JNDI connection pool approach is, compared to the Spring/Hibernate solution to the same

I have been looking into connection pool options and it is somewhat unclear to me what the differences in Tomcat JNDI connection pool approach is, compared to the Spring/Hibernate solution to the same.

Whilst it's possible to achieve the pooling using either 1, 2, the specific application we have would lend itself better to us using Tomcat given the constraints we have.

Reading about, there is some suggestion to just stick with Spring/Hibernate.

Are there any notable differences worth mentioning between each approach? What are other's personal 开发者_如何学编程experience of one or the other (or both) - I have successfully been using Spring/Hibernate for years now.


The two approaches are complementary, not mutually exclusive. In production systems, the likes of Spring/Hibernate will obtain a reference to the connection pool from the appserver, in the form of a javax.sql.DataSource, usually by looking for it on the JNDI tree. It generally considered to be the appserver's "job" to manage the connection pool and its connections.

Remember, JNDI is just a place for registering objects for sharing, it does in itself mandate any given connection pool mechanism. The app server creates and configures the pool, and the applications (via Spring/Hibernate/whatever) use it.

It's just as valid, however, for the applications to configure and manage the connection pool themselves. This does mean a bit more work for the application, though, with less reliance on the appserver.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号