Last active
August 29, 2015 14:20
-
-
Save dtanner/2e2bb9e597528bbeaed8 to your computer and use it in GitHub Desktop.
Grails Tomcat Datasource Utility
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.foo.util | |
import groovy.util.logging.Log4j | |
import org.apache.tomcat.jdbc.pool.ConnectionPool | |
import org.codehaus.groovy.grails.commons.GrailsApplication | |
@Log4j | |
class TomcatDatasourceUtil { | |
static void ensureCurrentDatasources(GrailsApplication application, List datasourceNames) { | |
log.debug "Ensuring datasources are current" | |
datasourceNames.each { String datasourceName -> | |
ConnectionPool connectionPool = application.mainContext.getBean(datasourceName).targetDataSource.targetDataSource.pool | |
def dataSourceFileConfig = application.config."$datasourceName" | |
// discover the properties we want to potentially change. if changed, update and purge the pool | |
List propertyNames = ['url', 'username', 'password'] | |
if (propertyNames.any { String propertyName -> | |
connectionPool.poolProperties."${propertyName}" != dataSourceFileConfig."${propertyName}" | |
}) { | |
connectionPool.poolProperties.url = dataSourceFileConfig.url | |
connectionPool.poolProperties.username = dataSourceFileConfig.username | |
connectionPool.poolProperties.password = dataSourceFileConfig.password | |
connectionPool.purge() | |
log.info("${datasourceName} was modified and refreshed") | |
} else { | |
log.info("${datasourceName} didn't change") | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment