标签: grails dns
我有这样的课程
class Account{ AccType type ; static constraints ={ type(nullable:false); } }
并在grails / i18n / message.properties中写道:
account.type.null =请填写帐户类型
但似乎错误仍然存在: 类[类帐户]的属性[类型]不能为空
如何使用我自己的消息更改错误消息。
答案 0 :(得分:7)
试
account.type.nullable=Nice message....。
account.type.nullable=Nice message....
请参阅here。