Grails数据源只返回一条记录

时间:2011-09-20 09:06:41

标签: grails gorm

想知道其他人是否经历过这个 - 我正在使用Grails Datasources插件从不同的数据库中读取一些只读数据,但我只从域表中返回一条记录(还有更多,我保证,每个都是独一无二的)。

有人能指出我在幕后发生的事情的正确方向吗?

编辑:示例代码

class X {
    static mapping = {
        table 'x'
    }
}

class TestController {
    def index = {
        println  X.list().size() //Always returns 1
    }
}

0 个答案:

没有答案