如何在Seam应用程序中访问*.properties文件
有没有办法访问Seam应用程序中的属性文件?我正在寻找某种资源加载器..
提前致谢!
Is there a way to access properties files in seam app? I'm looking for some kind of resource loader..
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上有一个 Seam 本机组件 - ResourceLoader,可以简单地用 @In 注入它,并通过 ResourceBundle 提供对属性文件的访问。
例子:
There is actually Seam native component - ResourceLoader which can be simply injected with @In and it gives an access to the property files via ResourceBundle.
Example:
来自官方 Seam 论坛的这篇文章可能会对您有所帮助。
This post from the official seam forum may help you.