32 lines
733 B
Groovy
Executable File
32 lines
733 B
Groovy
Executable File
dataSource {
|
|
pooled = true
|
|
driverClassName = "com.mysql.jdbc.Driver"
|
|
username = "root"
|
|
password = "root"
|
|
}
|
|
hibernate {
|
|
cache.use_second_level_cache=true
|
|
cache.use_query_cache=true
|
|
cache.provider_class='net.sf.ehcache.hibernate.EhCacheProvider'
|
|
}
|
|
// environment specific settings
|
|
environments {
|
|
development {
|
|
dataSource {
|
|
dbCreate = "update" // one of 'create', 'create-drop','update'
|
|
url = "jdbc:mysql://localhost:3306/BigBlueButtonDB"
|
|
}
|
|
}
|
|
test {
|
|
dataSource {
|
|
dbCreate = "update"
|
|
url = "jdbc:mysql://localhost:3306/BigBlueButtonDB"
|
|
}
|
|
}
|
|
production {
|
|
dataSource {
|
|
dbCreate = "update"
|
|
url = "jdbc:mysql://localhost:3306/BigBlueButtonDB"
|
|
}
|
|
}
|
|
} |