gpt4 book ai didi

grails - 将关联添加到SpringSecurity User类

转载 作者:行者123 更新时间:2023-12-02 14:45:18 26 4
gpt4 key购买 nike

我正在尝试从默认的Spring Security用户域类添加一个引用到另一个应该包含其他用户信息的类。

class User {
transient springSecurityService

String username
String password
boolean enabled
boolean accountExpired
boolean accountLocked
boolean passwordExpired

Profile profile
...

...和...
class Profile {
static constraints = {
}

static belongsTo = [user : User]

String firstName
String lastName
}

从我的阅读来看,这应该是它的工作方式,但是出现以下错误:
ERROR context.GrailsContextLoader  - Error executing bootstraps: null
Message: null
Line | Method
->> 32 | create in com.app.UserRole
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 15 | doCall in BootStrap$_closure1
| 301 | evaluateEnvironmentSpecificBlock in grails.util.Environment
| 294 | executeForEnvironment in ''
| 270 | executeForCurrentEnvironment . . in ''
| 303 | innerRun in java.util.concurrent.FutureTask$Sync
| 138 | run . . . . . . . . . . . . . . in java.util.concurrent.FutureTask
| 886 | runTask in java.util.concurrent.ThreadPoolExecutor$Worker
| 908 | run . . . . . . . . . . . . . . in ''
^ 662 | run in java.lang.Thread

任何的想法?

最佳答案

我们需要确定您的BootStrap,但是我怀疑这是因为您正在执行类似的操作

def user = new User(....).save()
def role = new Role(....).save()
UserRole.create(user, role)

并且您的新 User验证失败(这导致 save返回 null)。

如果您使用 save(failOnError:true),则应该得到一个不同的异常,更好地表明真正的问题是什么。检查 constraints类中的 User是否正确,尤其要注意,默认情况下GORM属性是不可为空的,因此,如果您希望能够保存没有 UserProfile,则需要添加以下约束: profile(nullable:true)

关于grails - 将关联添加到SpringSecurity User类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12999479/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com