Grails 2.0.4でこのようにするにはどうすればよいですか?
dataSource {
dbCreate = "create-drop"
String host = request.getServerName()
switch( host ) {
case "company1.com": url = "jdbc:mysql://localhost/db1"
case "company2.com": url = "jdbc:mysql://localhost/db2"
default: null
}
}
マルチテナント コア プラグインを使用したくない