Spring工具套件中的Grails GORM

时间:2013-05-27 16:03:22

标签: grails gorm

以下技巧代码适用于'grails console'。但是当我尝试在STS中运行它时,它给域类的编译错误。

http://timsporcic.github.io/GORM-Recipes/

是否可以在STS中运行,我想在contorlers中使用之前测试GORM方法。甚至来自STS的控制台命令也无效。

试图像这样跑:

class Test {

    static main(args) {
        new BootStrap().init()
println Person.get(1)
        }
}

感谢

1 个答案:

答案 0 :(得分:0)

Run as > Groovy Script无效。 grails console的工作方式不同,因为您已完全初始化应用程序(run-apptest-app相同)。

如果您想测试BootStrap课程,建议您创建一个integration test课程。这也将确保,如果你改变你的类,逻辑仍然有效。