我在Grails App中使用Spring Security。我正在尝试向创建用户添加一个要求,以将其连接到另一个域。我已将其添加到用户域,但是当我去创建新用户时它没有显示。除了我添加的行之外,域的内容是通过quickStart生成的。这是我添加的内容和周围的代码。我正在运行Spring Security Core和UI
String username
String password
//Added to connect user to comapny
static belongsTo=[company:Company]
boolean enabled
boolean accountExpired
boolean accountLocked
boolean passwordExpired
我已经在线查看,甚至找到了一个像这样添加它的教程。它不适合我。任何帮助将不胜感激。我是Grails和Groovy的新手。