gpt4 book ai didi

grails - Grails中的域类构造函数?

转载 作者:行者123 更新时间:2023-12-04 17:34:52 25 4
gpt4 key购买 nike

我有一些代码要在创建域类对象时运行;在 Java 中,我会将这段代码包含在构造函数中。我怎样才能在 Groovy/Grails 中做到这一点?

谢谢。

最佳答案

您可以向域类添加构造函数,但如果尚未存在,则还必须添加默认的无参数构造函数。

//Domain Class
class Author {
String name

Author() {
//Execute post creation code
}

Author(String _name) {
name = _name

//Execute post creation code
}
}

另一方面,域类是 POGO,因此如果在对象创建时不需要执行额外的逻辑,您也可以使用 map 构造函数。无需添加任何构造函数,您也可以实例化 Author作为:
Author(name: 'John Doe')

关于grails - Grails中的域类构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23879104/

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