def useP6Spy = false // use this to enable p6spy logging dataSource { pooled = true driverClassName = (useP6Spy) ? "com.p6spy.engine.spy.P6SpyDriver" : "org.postgis.DriverWrapper" username = "postgres" password = "postgres" dialect = org.hibernatespatial.postgis.PostgisDialect // loggingSql = true } hibernate { cache.use_second_level_cache = true cache.use_query_cache = true cache.provider_class = 'org.hibernate.cache.EhCacheProvider' jdbc.batch_size = 20 } // environment specific settings environments { development { dataSource { dbCreate = "create-drop" // one of 'create', 'create-drop','update' url = "jdbc:postgresql_postGIS:cstars-footprints-dev" } } test { dataSource { dbCreate = "update" url = "jdbc:postgresql_postGIS:cstars-footprints-test" } } production { dataSource { dbCreate = "update" url = "jdbc:postgresql_postGIS:cstars-footprints-prod" } } }