想知道其他人是否经历过这个 - 我正在使用Grails Datasources插件从不同的数据库中读取一些只读数据,但我只从域表中返回一条记录(还有更多,我保证,每个都是独一无二的)。
有人能指出我在幕后发生的事情的正确方向吗?
编辑:示例代码
class X {
static mapping = {
table 'x'
}
}
class TestController {
def index = {
println X.list().size() //Always returns 1
}
}