Grails:自定义约束错误消息

时间:2011-09-29 04:01:14

标签: grails dns

我有这样的课程

class Account{

   AccType type ;

   static constraints ={
      type(nullable:false);
   }
}

并在grails / i18n / message.properties中写道:

  

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

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

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

1 个答案:

答案 0 :(得分:7)

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

请参阅here