Grails如何使用SQL Server数据库正确映射一对多

时间:2018-03-26 18:29:52

标签: grails mapping gorm one-to-many hibernate-mapping

我有两个域类,它们之间的关系是1到多。我知道如何将每个类的列单独映射到各自的表,但是如何映射MSSQL数据库中存在的关系?没有连接表,我只有只读访问权限。我查看了Grails文档的各个页面,这就是我现在所处的位置(一个学生有很多课程)。在我的表中,将两个表绑定在一起的外键位于Courses表中。

class StudentHeader { //on the one side
    String stuNo
    String stuName
    String stuStreet

    static mappedBy = [refs: "fkCustNo"]

    static hasMany = [refs: CourseHeader]
    static constraints = {
    }

    static mapping = {
        table name: "[tbl_Students]", schema: "[dbo]", catalog: "[CRD].[CourseTrak]"
        version false
        id generator: 'assigned', name: 'stuNo'
        stuNo column: '[PK_StudentNo]'
        stuName column: '[Student_Name]'
        stuStreet column: '[Student_Street]'


    }
}

class CourseHeader { //on the many side
    String courId
    String courName
    StudentHeader fkCourNo
    static constraints = {
    }

    static mapping = {
        table name: "[tbl_Courses]", schema: "[dbo]", catalog: "[CRD].[CourseTrak]"
        version false
        id generator: 'assigned', name: 'courId'
        courId column: '[PK_CourseId]'
        courName column: '[Course_Name]'
        fkCourNo column: '[FK_CourseNo]'


    }
}

这里的测试是我试图访问学生的课程

StudentHeader.first().refs

1 个答案:

答案 0 :(得分:0)

我相信我已经弄清楚了。对于多方面的域类,您需要将insert和updateable设置为等于false(“many”域中的对象字段必须与mappedBy中的键值对具有相同的值):

class StudentHeader{
static mappedBy = [refs: "fkCustNo"]
}

class CourseHeader { //on the many side
    String courId
    String courName
    StudentHeader fkCustNo
    static constraints = {
    }

    static mapping = {
        table name: "[tbl_Courses]", schema: "[dbo]", catalog: "[CRD].[CourseTrak]"
        version false
        id generator: 'assigned', name: 'courId'
        courId column: '[PK_CourseId]'
        courName column: '[Course_Name]'
        fkCustNo column: '[FK_CourseNo]', insertable: false, updateable: false


    }
}