Hibernate 验证器错误消息文件名
在 JSF 2.0 中使用 hibernate 验证器时,能否将 ValidationMessages.properties 文件名更改为其他文件名?
Can the ValidationMessages.properties file name changed to a different file name while using hibernate validator in JSF 2.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,你不能给它起一个不同的名字。但理论上可以使用自定义
消息插值器
。No, you can't give it a different name. But it's in theory possible to read from an arbitrary resource bundle yourself with a custom
MessageInterpolator
.Hibernate Validator 定义了 资源包定位器,允许自定义资源包的检索方式,同时仍然使用标准消息插值算法。
要从自定义资源包检索消息,只需使用包名称定义一个
PlatformResourceBundleLocator
并使用定位器创建一个ResourceBundleMessageInterpolator
,如下所示:Hibernate Validator defines the notion of resource bundle locators which allow to customize the way how resource bundles are retrieved, while still using the standard message interpolation algorithm.
To retrieve messages from a custom resource bundle just define a
PlatformResourceBundleLocator
with the bundle name and create aResourceBundleMessageInterpolator
using the locator like this: