1
試圖回答一個快速問題,沒有任何運氣在線搜索。Groovy空格分隔的散列圖鍵
我學習Groovy和跨越此代碼段上線了:
class Person {
String name
Person parent
static belongsTo = [ supervisor: Person ]
static mappedBy = [ supervisor: "none", parent: "none" ]
static constraints = { supervisor nullable: true }
}
我特別關心Person
類體的最後一行。 { supervisor nullable: true }
是什麼意思?那些鏈接到價值true
什麼的多個鍵?
謝謝!