2
我有這個自動生成的代碼行:Groovy的:意外令牌「:」
EPRole validator: { EPRole r, EPUserEPRole ur ->
if (ur.EPUser == null) return
boolean existing = false
EPUserEPRole.withNewSession {
existing = EPUserEPRole.exists(ur.EPUser.id, r.id)
}
if (existing) {
return 'userRole.exists'
}
}
當我嘗試編譯代碼我得到82: unexpected token: validator @ line 82, column 10.
我在常規新,所以任何幫助表示讚賞。
應該是epRole? EPRole將是類 – cfrick 2015-03-02 22:11:31
啊,現在我明白了。整個班級都是自動生成的,你說的錯誤取決於資本和小案例。我如何接受你的答案是正確的? – bel 2015-03-02 22:19:43