Connection pooling options with JDBC: DBCP vs C3P0

前端 未结 16 1865
遥遥无期
遥遥无期 2020-11-22 06:17

What is the best connection pooling library available for Java/JDBC?

I\'m considering the 2 main candidates (free / open-source):

  • Apache DBCP - http:/
16条回答
  •  渐次进展
    2020-11-22 07:09

    For the auto-reconnect issue with DBCP, has any tried using the following 2 configuration parameters?

    validationQuery="Some Query"
    
    testOnBorrow=true
    

提交回复
热议问题