1

接続プール用に c3Po 構成を構成します。以下のプロパティはどういう意味ですか?

preferredTestQuery  : query to test the connection
testConnectionOnCheckin : above query is executed when connection is returned back to pool
testConnectionOnCheckout : above query is executed when connection is taken from pool
idleConnectionTestPeriod :

私の理解は正しいですか?

ありがとう!

4

1 に答える 1

1

これらの設定は、C3P0が接続のタイムアウトをテストする方法を制御します。私は通常「SELECT1;」を使用します たとえば、MySQL接続をテストするため。接続をテストする方法は他にもあり、いくつかの選択肢はパフォーマンスに影響を与えるため、http ://www.mchange.com/projects/c3p0/index.html#configuring_connection_testingにあるドキュメントを読むことをお勧めします。

于 2012-05-04T11:04:11.797 に答える