我有结合多个表列的mysql视图。我只想从此视图中选择数据以在html页面中显示web。无需使用GORM创建/更新/删除。如何为此视图定义域类?
我的观点是这样的。
view name: testview
col1 int,
col2 varchat(50),
col3 date
感谢
答案 0 :(得分:3)
假设col1是主键:
class View {
Integer col1
String col2
Date col3
static mapping = {
table name: "testview"
version false
id name: "col1", generator: "assigned"
// These are unnecessary unless you change the name of the fields
col1 column: "col1"
col2 column: "col2"
col3 column: "col3"
}
}
答案 1 :(得分:1)
Grails gorm不提供对视图的直接访问,但您可以尝试使用HQL,或参考Elegant ways to handle database views on hibernate entities?。