gpt4 book ai didi

grails - 如何在Grails中映射来自不同dataSources的表?

转载 作者:行者123 更新时间:2023-12-02 15:45:04 25 4
gpt4 key购买 nike

如何在Grails中映射来自不同dataSources的表?

class Classroom {
static hasMany = [students : Student]
static mapping = {
datasource 'school'
}
}

class Laboratory {
static hasMany = [students : Student]
static mapping = {
datasource 'school'
}
}

class Student {
String name
static mapping = {
datasource 'person'
}
}

如果三个表都来自同一数据源,那么Grails将生成五个表,即 classroomlaboratorystudentclassroom_studentlaboratory_student

这段代码给了我一个错误: An association from the table classroom_student refers to an unmapped class: registration.Student
我的问题是:

1)我该如何实现?

2)将在哪个数据源中生成 classroom_studentlaboratory_student

最佳答案

1) How do I achieve this?



GORM不支持跨数据源的关系。您将必须编写自己的查询并自行跟踪关系。

2) In which datasource will classroom_student and laboratory_student be generated?



无论您在哪里创建它们(请参阅对#1的回答)。

关于grails - 如何在Grails中映射来自不同dataSources的表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49891919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com