gpt4 book ai didi

grails - Grails控制台-无法找到类(class)?

转载 作者:行者123 更新时间:2023-12-03 09:20:12 25 4
gpt4 key购买 nike

我正在研究“Grails in Action”一书,而我只停留在介绍grails控制台的那部分。在项目目录中,我键入“grails console”以打开控制台窗口,并且控制台甚至输出指示其正在编译类的信息,但是当我在控制台中键入以下内容时:
new Quote(author:'Larry Wall',content:'There is more than one method to our madness.').save()
我收到此错误:

unable to resolve class Quote 
at line: 1, column: 1

Quote类存在于 grails-app/domain/qotd/Quote.groovy的Quote.groovy中,我无法运行以上命令。

这是怎么了

最佳答案

在尝试实例化它之前,您是否尝试导入包含域类的包?

import qotd.Quote
new Quote(author:'Larry Wall',content:'There is more than one method to our madness.').save()

确保您还可以尝试指定完整的限定名称:
new qotd.Quote(author:'Larry Wall',content:'There is more than one method to our madness.').save()

关于grails - Grails控制台-无法找到类(class)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2655418/

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