Spring 3 验证和国际化
我使用此链接来配置我的项目的验证: Spring 3 验证
我添加了以下依赖项:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.1.0.Final</version>
</dependency>
它工作正常,但我有国际化问题,我使用中文,但我发现其中不存在 zh_CN hibernate-validator-4.1.0.Final.jar。 还有其他选择吗? 谢谢。
I use this link to config my project's validation:
Spring 3 Validation
And I added the following dependency:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.1.0.Final</version>
</dependency>
It works fine,but I have a internationalization issue,I am using Chinese, but I found there is no zh_CN exists in
hibernate-validator-4.1.0.Final.jar.
Is there another option?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过最新的测试版吗?
这个链接说的是刚刚完成的中文翻译工作这个版本。 .jar 中有一个
ValidationMessages_zh_CN.properties
文件,因此希望它包含您需要的内容。Have you tried the latest beta release?
This link says that the Chinese translation work that has only just been finished in this version. There is a
ValidationMessages_zh_CN.properties
file inside the .jar so hopefully it contains what you need.