在 Spring 验证注释中使用消息参数
在这种向命令类的属性添加验证约束的代码中:
@NotBlank(message="{xxx.constraints.username.required}")
如何将参数传递给消息?事实上,我希望该消息成为一个模板,可以吗?
谢谢!
In this kind of code that adds a validation constraint to an attribute of my command class:
@NotBlank(message="{xxx.constraints.username.required}")
how can I pass parameters to the message? In fact I would like the message to be a template, is it possible?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你最好的选择是使用 SpEL(Spring 表达式语言)。
上面将从
com.my.package.MyUtil
类调用静态方法getMessage()
。I think your best bet is to use SpEL (Spring Expression Language).
The above would call a static method
getMessage()
from thecom.my.package.MyUtil
class.