0

我有一个域类:

package x

class User {

    transient springSecurityService

    String username
    String password
        //other stuffs.
    static constraints = {
    username blank: false, unique: true
    password blank: false
    email blank: false, email:true
    }
}

这是我用于 Spring 安全性的类。在我的/register/index页面中,我需要自定义错误消息,因此我将这些行添加到message.properties

x.User.username.unique=Username already exists. Please use other username.

但这似乎不起作用。我只收到此错误消息: Property [{0}] of class [{1}] cannot be null

即使我将一些值传递到我的username列中,我仍然会收到此错误消息。我很困惑。这是怎么/register/index来的?

我需要在哪里更改错误消息?

提前致谢。

4

1 回答 1

2

问题在于您声明消息代码的方式,它不符合约定。看看验证和国际化。在这里你可以发现正确的方法是
[Class Name].[Property Name].[Constraint Code]
所以你的约束应该是

user.username.unique=Username already exists. Please use other username.
于 2012-08-07T07:50:25.267 回答