mark 使用commons-pool實現自定義資源池

炸雞店老闆發表於2017-12-22

如何藉助commons-pool 實現自定義資源池(jdbc連線、redis連線、http連線等)

官方:Apache Commons Pool

教程Example:A Simple Pool Client

Jedis Example 參考類:

  1. JedisFactory,實現了PooledObjectFactory,定義redis連線的建立、歸還、銷燬操作。
  2. JedisPool,redis連線池的具體實現,封裝GenericObjectPool,完成連線池的管理。
  3. JedisPool直接使用GenericObjectPoolConfig 構造連線池的配置資訊。
  4. JedisPool 主要的功能getRedis連線,close Redis連線。
  5. 類結構描述為:JedisPool(GenericObjectPoolConfig , GenericObjectPool(PooledObjectFactory

easy!



相關文章