在我们的grails应用程序中,我们正在使用Spring Security& Spring Security UI,
我们使用S2ui-override创建了User Role UserRole域类:
grails s2ui-override user package.name
grails s2ui-override role package.name
这些工作很棒,但我希望通过将以下内容添加到User类来将其他三个域类与用户关联起来:
static belongsTo = [organization : Organization]
static hasMany = [reports: Report, invoices: Invoice]
但是当我运行应用程序时,我在创建UserRole类时遇到错误:
Error |
2013-12-06 12:49:19,797 [localhost-startStop-1] ERROR context.GrailsContextLoader - Error initializing the application: null
Message: null
Line | Method
->> 36 | create in stepdev.UserRole
我错过了什么?我是否需要不同的覆盖,或者我是否需要做其他事情,我还想向User类添加更多信息,例如我尝试使用相同结果的电子邮件