Grails で接続プーリングがどのようにアクティブ化されているかがわかりませんでした。
私の DataSource.groovy には、次のものがあります。
url = "jdbc:mysql://localhost/myapp?useUnicode=yes&characterEncoding=UTF-8"
username = "root"
password = ""
dialect = org.hibernate.dialect.MySQL5InnoDBDialect
pooled = true
properties {
maxActive = -1
minEvictableIdleTimeMillis=1800000
timeBetweenEvictionRunsMillis=1800000
numTestsPerEvictionRun=3
testOnBorrow=true
testWhileIdle=true
testOnReturn=true
validationQuery = "select 1"
}
接続プールを有効にするために、pooled = true を設定する以外に何かしなければならないことはありますか?