我已经为我的项目安装了 spring-security-core 插件以实现登录安全性。安装后一切正常,例如 if account_locked= true 显示帐户已锁定的消息,如果 enabled=false 则显示帐户未启用。但是当一切正常时,它会显示“抱歉,我们无法找到具有该用户名和密码的用户”。虽然我有这个用户名和密码。有人可以帮我吗?
这是我的创建操作 >>>
def createUser = {
def user = new User()
user.properties = params
println(user.username)
def password = user.password
def salt = user.username //depends on what you're using as a salt
user.password = springSecurityService.encodePassword(password, salt)
user.save()
}