Grails:自定义约束错误消息

nig*_*2k1 1 dns grails

我有这样的课

class Account{

   AccType type ;

   static constraints ={
      type(nullable:false);
   }
}
Run Code Online (Sandbox Code Playgroud)

在grails/i18n/message.properties我写道:

account.type.null =请填写帐户类型

但似乎错误仍然是:类[类帐户]的属性[类型]不能为空

如何使用我自己的消息更改错误消息.

hvg*_*des 7

尝试

account.type.nullable=Nice message.....

看到这里.