Grails 中的组合:构造函数中的 addTo*

发布于 2024-08-31 11:41:23 字数 580 浏览 3 评论 0原文

我在 Grails 中有以下简化模型:

  • DataBlock 由许多排序的 ConfigPreset 对象组成。

在 ConfigPreset 中,我有

static belongsTo = [dataBlock: DataBlock]

并且 DataBlock 类包含:

List presets
static hasMany = [presets: ConfigPreset]

DataBlock() {
    addToPresets(new ConfigPreset())
}

重载的构造函数返回: 无方法签名: [...].addToPresets() 适用于参数类型: (ConfigPreset) 值: [ConfigPreset : null]。

但为什么我的 ConfigPreset 实例为空?如果我尝试使用未修改的构造函数在例如 BootStrap.groovy 中创建 DataBlock 对象并对其调用 addToPresets(...) ,它会起作用。

I have the following simplified model in Grails:

  • A DataBlock consists of a number of sorted ConfigPreset objects.

In ConfigPreset I have

static belongsTo = [dataBlock: DataBlock]

and the DataBlock class contains:

List presets
static hasMany = [presets: ConfigPreset]

DataBlock() {
    addToPresets(new ConfigPreset())
}

The overloaded constructor returns: No signature of method: [...].addToPresets() is applicable for argument types: (ConfigPreset) values: [ConfigPreset : null].

But why is my ConfigPreset instance null? If I try to create a DataBlock object in e.g. BootStrap.groovy with an unmodified ctor and call addToPresets(...) on it, it works.

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

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

发布评论

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

评论(2

彼岸花似海 2024-09-07 11:41:23

Grails 在启动期间为其初始化代码至少实例化一次域类(和其他工件)。这种情况发生在添加动态方法之前,因此是例外。它可以在 BootStrap 中运行,因为此时所有内容都已配置完毕。请注意,没有任何内容为 null - 您只是看到域类的 toString() 打印名称和 id,并且由于它是一个新实例,因此 id 为 null。

不过,您可以使用 beforeInsert 回调来实现此目的,请参阅 - http://grails.org/doc/latest/guide/5.%20Object%20Relational%20Mapping%20%28GORM%29.html#5.5。 1%20Events%20和%20Auto%20时间戳

Grails instantiates your domain classes (and other artifacts) at least once during startup for its initialization code. This happens before the dynamic methods are added, hence the exception. It works in BootStrap since everything's configured at this point. Note that nothing is null - you're just seeing the toString() of the domain class which prints the name and id, and since it's a new instance the id is null.

You can use the beforeInsert callback for this though, see - http://grails.org/doc/latest/guide/5.%20Object%20Relational%20Mapping%20%28GORM%29.html#5.5.1%20Events%20and%20Auto%20Timestamping

那请放手 2024-09-07 11:41:23

你的例子行不通。

ConfigPreset 内指定 static ownTo = [dataBlock: DataBlock] 意味着如果不指定 DataBlock 则无法创建 ConfigPreset 实例> 所有者。

因此,基本上以下语句

new ConfigPreset() 将始终返回 null,这与

new ConfigPreset(dataBlock: aDataBlock) 不同,它将返回有效的 ConfigPreset 实例。

方法 addToXXX 基本上执行以下操作:

  1. 创建 XXX 实例(如下所述)
  2. 将新创建的 XXX 实例添加到 this 实例

在您的情况下,它无法创建 < code>ConfigPreset (步骤 1),因为 DataBlock 实例尚未创建(您位于构造函数中)

如果您希望在创建 DataBlock 时自动关联 ConfigPreset,您可以这样做通过使用 Gorm Events,将 callbalck 添加到 beforeInsert 事件。

或者您可以删除 belongsTo 并且 new ConfigPreset() 将起作用。

Your example cannot work.

Specifying static belongsTo = [dataBlock: DataBlock] inside ConfigPreset means that you cannot create a ConfigPresetinstance without specifying the DataBlock owner.

So basically the following statement

new ConfigPreset() will always return null unlike

new ConfigPreset(dataBlock: aDataBlock) that will return a valid ConfigPreset instance.

The method addToXXX is basically doing the following :

  1. Create the XXX instance (as described below)
  2. Add the newly created XXX instance to this instance

In your case, it cannot create the ConfigPreset (step 1) since the DataBlock instance is not yet created (your are in the constructor)

If you want to associate automatically a ConfigPreset whenever you create a DataBlock, you can do it by using Gorm Events, adding a callbalck to beforeInsert event.

Or you can remove belongsTo and new ConfigPreset() will work.

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