自动检查jstl fmt:消息?
是否有任何自动方法来检查我的 jstl 中所有引用的消息实际上是否在属性文件中提供?
当然,当我引用它们时,我总是添加翻译,但我主要担心我忘记翻译的罕见情况,或者在 fmt:messages 标签或属性文件中出现拼写错误;如果它是一条不经常显示的消息(例如不寻常的错误消息),那么我可能不会意识到它,直到有人收到带有 ???errormessagename??? 的错误。这可不好!)
Is there any automatic way to check that all referenced messages in my jstl are, in fact, provided in a properties file?
Of course I always add in translations as I make references to them, but I'm mainly concerned about the rare instance where I forget one, or have a typo in either the fmt:messages tag or the properties file; if it is a message that isn't displayed often (e.g. an unusual error message), then I may not realize it until someone gets the error with a ???errormessagename??? which is no good!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该始终有一个默认属性。
这样你就可以避免???Property_Key???消息。
但我最近也有同样的需求。
我制作了一个具有自动合并功能的 Excel 工作表。
我这样做的方法是:
我知道这不是一个完美的工具,但它确实很有帮助。
You should always have a default property.
With that you will avoid ???Property_Key??? messages.
But I recently had the same need.
I've made a Excel sheet with automatic merging.
The way I did it is:
I know it's not a perfect tool, but it's realy helpfull.