Spring资源包的实现
我正在春天为该项目实现资源包,项目非常庞大并且具有复杂的文件夹结构,我对文件夹结构感到困惑我想知道哪个文件应该放在哪里。基本上我正在使用属性文件和xml文件配置属性文件,然后在 jsp 中显示密钥。
I am implementing Resource bundle in spring for the project, project is pretty huge and has complex folder structure ,I am confused of the folder strure I would like to know which file should go where .Basically I am using a property file and a xml file to configuring the property file then displaying the key in jsp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring 对资源包的抽象称为 MessageSource (3.8.2. 使用消息源)。谷歌一下,你会发现很多关于它的教程(最好的一个是 Spring 自己的参考文档)。您可以按照本教程使用Java的资源包。
并按照此博客将其用作网络应用程序
Spring's abstraction of resource bundle is called MessageSource (3.8.2. Internationalization using MessageSources). Google for it and you would find lot of tutorials on it (Best one is Spring's own reference doc). You can follow this tutorial to use Java's resource bundle.
And follow this blog to use it a web app