1

我正在使用连接表创建 2 个域对象:

class DeliveryMethod {

    List<PaymentMethod> paymentMethods = new ArrayList<PaymentMethod>()
    static hasMany = [paymentMethods: PaymentMethod];
    static constraints = {
    }
    static mapping = {
    }
}

class PaymentMethod {
    String name;
    static constraints = {

    }
    static mapping = {
    }
}

连接表已创建,但问题是连接列不是其中的主键,它们可以为空,并且其中只有一个是外键。这是一个错误还是可以以某种方式配置?

在此处输入图像描述

4

0 回答 0