PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Heroku Postgres:Diese Verbindung wurde geschlossen

Ich habe es selbst gelöst, indem ich dies zu DataSource.groovy hinzugefügt habe:

dataSource {
    pooled = true
    properties {
       maxActive = -1
       minEvictableIdleTimeMillis=1800000
       timeBetweenEvictionRunsMillis=1800000
       numTestsPerEvictionRun=3
       testOnBorrow=true
       testWhileIdle=true
       testOnReturn=true
       validationQuery="SELECT 1"
    }
}