2013-01-04 79 views
0

我有組合多個表列的mysql視圖。我只想從這個視圖中選擇數據以在html頁面中顯示網頁。無需使用GORM創建/更新/刪除。我怎樣才能爲這個視圖定義域類?grails爲mysql視圖創建域類

我的看法是這樣的。

view name: testview 
col1 int, 
col2 varchat(50), 
col3 date 

感謝

+0

什麼是主鍵? –

+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" 
    } 
}