Grails 中的组合:构造函数中的 addTo*
我在 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 sortedConfigPreset
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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
你的例子行不通。
在
ConfigPreset
内指定static ownTo = [dataBlock: DataBlock]
意味着如果不指定DataBlock
则无法创建ConfigPreset
实例> 所有者。因此,基本上以下语句
new ConfigPreset()
将始终返回null
,这与new ConfigPreset(dataBlock: aDataBlock)
不同,它将返回有效的ConfigPreset
实例。方法
addToXXX
基本上执行以下操作:this
实例在您的情况下,它无法创建 < code>ConfigPreset (步骤 1),因为
DataBlock
实例尚未创建(您位于构造函数中)如果您希望在创建 DataBlock 时自动关联 ConfigPreset,您可以这样做通过使用 Gorm Events,将 callbalck 添加到 beforeInsert 事件。
或者您可以删除
belongsTo
并且new ConfigPreset()
将起作用。Your example cannot work.
Specifying
static belongsTo = [dataBlock: DataBlock]
insideConfigPreset
means that you cannot create aConfigPreset
instance without specifying theDataBlock
owner.So basically the following statement
new ConfigPreset()
will always returnnull
unlikenew ConfigPreset(dataBlock: aDataBlock)
that will return a validConfigPreset
instance.The method
addToXXX
is basically doing the following :this
instanceIn your case, it cannot create the
ConfigPreset
(step 1) since theDataBlock
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
andnew ConfigPreset()
will work.