[TIL] Connection Pool
「接続ポイント」
JDBC処理中、接続作成処理時間が最も長い
->接続を保存して応答時間を短縮
1-9処理時間:要求に応答する時間
Poolの作成->アプリケーションの起動
長所
使用
javax.dql.DataSource
接続プールインタフェース基準
getConnection():connect借用方法
DataSource ds=WASインプリメンテーション、オープンソースインプリメンテーション...到達可能
Naming Service & JNDI
Naming Service
JNDI (Java Naming and Directory Interface)
ctx = new InitialContext(); // Root 설정
실제 리소스 or 디렉토리 = ctx.lookup(" ");
//Connection Interface
conn = DriverManager.getConnection();
conn = ds.getConnection();
conn.close();
Reference
この問題について([TIL] Connection Pool), 我々は、より多くの情報をここで見つけました https://velog.io/@bae_mung/TIL-Connection-Poolテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol