Skip to content

Instantly share code, notes, and snippets.

@marhan
Created July 1, 2015 10:05
Grails Data Source configuration for development (H2 Database in Mixed Mode)
environments {
development {
dataSource {
dbCreate = "create-drop"
url = "jdbc:h2:data/devDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE;MVCC=TRUE;AUTO_SERVER=TRUE"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment