仅需修改context.xml:


    
</context>
</pre>
各属性的含义以及完整属性列表可参考:DBCP官方文档,以下是一些建议:
  • 将连接属性配置在“ connectionProperties”中,这样可以避免对“&”符号进行转义
  • 配置“poolPreparedStatements”以缓存PreparedStatement对象提升性能
  • 配置“removeAbandoned”和“removeAbandonedTimeout”以打开“Remove Abandoned Connection”功能。该功能会定期检查并关闭没有被close的connection,避免连接泄
  • 将“testOnBorrow”设为“false”以关闭从连接池获取连接时的有效性检查