使用 @valid 进行 spring 验证 where/how 自定义错误消息
我正在尝试使用属性文件中的错误消息进行一些春季验证。 但我发现的所有示例似乎都有硬编码的值,或者从属性文件获取但使用验证器类并在那里检索它。
我的设置有点不同。 我在请求映射中使用 @Valid 注释,并且我的 @Valid 类使用 @NotNull 等。 我见过一些例子,人们这样做 @NotNull(message = "blablabla"); 但这也是硬编码的,我想将消息放入属性文件中,以便我可以轻松地即时编辑它,以便将来可以轻松地实现 i18n。
任何有关如何实现这一目标的意见将不胜感激。
I'm trying to do some spring validation with the error messages in properties files.
But the examples I find all seem to have the values hardcoded, or gotten from a properties file but using a validator class and retrieving it there.
My setup is a bit different.
I'm using the @Valid annotation in my requestmapping, and my @Valid class uses @NotNull etc.
I've seen some examples where people do @NotNull(message = "blablabla");
But that's also hardcoded, and I'd like to put the messages in a properties file so I can easily edit it on the fly and so I can easily implement i18n in the future.
Any input on how to achieve this would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它的工作方式与显式验证器完全相同 - 您声明
MessageSource
并在.properties
文件中写入错误消息。消息代码的格式为constraintName.modelAttributeName.propertyName
:。
messages.properties
:MessageSource
声明:It works exactly the same way as with explicit
Validator
- you declare aMessageSource
and write error messages in.properties
files. Messages codes are formed asconstraintName.modelAttributeName.propertyName
:.
messages.properties
:MessageSource
declaration: