如何使用 grails 和多个 postgresql 数据库模式

发布于 2024-10-02 03:21:16 字数 190 浏览 3 评论 0原文

有时我们有一个应用程序使用多个数据库模式。

例如,有一个表company1.someTable,它看起来与company2.someTable 完全相同。但某些用户可以访问company1.,其他用户可以访问company2。两者都可以。

有没有一种简单的方法来告诉 grails 使用这样的数据库并让用户选择模式?

Sometimes we have one application which uses multiple database schemata.

E.g. There is a table company1.someTable which looks exactly like company2.someTable. But some users have access to company1., others to company2. oder both.

Is there an easy way to tell grails to work with a database like this and let the user select the schema?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半山落雨半山空 2024-10-09 03:21:16

您可以尝试数据源插件。

http://www.grails.org/plugin/datasources

我已成功连接两个不同的mysql数据库(postgres 应该是相同的)。

在 grails 项目中运行命令:

grails install-plugin datasources

创建文件 conf/Datasources.conf,它将保存第二个架构(默认值仍在 Dataseource.conf 中),

例如:

datasources = {

datasource(name: 'wadmin') {
    driverClassName('com.mysql.jdbc.Driver')
    dbCreate("update")
    url("jdbc:mysql://localhost/wadmin-test")
    username("xx")
    password("xx")
    // here you will write list of classes in particular schema
    domainClasses([cz.webarchiv.wadmin.Curator, cz.webarchiv.wadmin.Publisher])
    dialect(org.hibernate.dialect.MySQL5InnoDBDialect)
    pooled(true)
    environments(['development'])
}

}

注意其中的小“s”字母数据源。

希望这有帮助。

You could try Datasources plugin.

http://www.grails.org/plugin/datasources

I have managed to connect two different mysql databases (postgres should be the same).

In grails project run command:

grails install-plugin datasources

Create file conf/Datasources.conf, which will hold the second schema (the default is still in Dataseource.conf)

for example:

datasources = {

datasource(name: 'wadmin') {
    driverClassName('com.mysql.jdbc.Driver')
    dbCreate("update")
    url("jdbc:mysql://localhost/wadmin-test")
    username("xx")
    password("xx")
    // here you will write list of classes in particular schema
    domainClasses([cz.webarchiv.wadmin.Curator, cz.webarchiv.wadmin.Publisher])
    dialect(org.hibernate.dialect.MySQL5InnoDBDialect)
    pooled(true)
    environments(['development'])
}

}

Mind the small "s" letter in datasources.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文