我有一个域类:
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
来的?
我需要在哪里更改错误消息?
提前致谢。