如何在Seam应用程序中访问*.properties文件

发布于 2024-09-30 03:06:13 字数 57 浏览 7 评论 0原文

有没有办法访问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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不咬妳我踢妳 2024-10-07 03:06:13

实际上有一个 Seam 本机组件 - ResourceLoader,可以简单地用 @In 注入它,并通过 ResourceBundle 提供对属性文件的访问。

例子:

import org.jboss.seam.core.ResourceLoader;
... 
@In
private ResourceLoader resourceLoader;
...
resourceLoader.getResource("BUNDLE_NAME");

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:

import org.jboss.seam.core.ResourceLoader;
... 
@In
private ResourceLoader resourceLoader;
...
resourceLoader.getResource("BUNDLE_NAME");
沉默的熊 2024-10-07 03:06:13

来自官方 Seam 论坛的这篇文章可能会对您有所帮助。

This post from the official seam forum may help you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文