WebSphere Portal:名称空间绑定。如何获取变量?

发布于 2024-10-11 23:53:26 字数 261 浏览 3 评论 0原文

我有一个绑定到 WebSphere Portal 的字符串变量(通过管理控制台): 绑定类型:字符串 | 绑定标识符:阈值 | 名称空间中的名称:repos/threshold | 字符串值:30

现在,我需要在部署在此门户上的企业应用程序中获取此变量。我听说这可以在ExternalContext 的帮助下完成。也许还有其他方法。请给我一个例子和解释=)

I have a String variable that is binded to a WebSphere Portal (via admin console):
Binding type : string |
Binding identifier : threshold |
Name in name space : repos/threshold |
String value : 30

Now, I need to get this variable in my enterprise app, which is deployed on this portal. I've heard that it can be done with a help of ExternalContext. Maybe there are other ways. Please, give me an example and explanation =)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

顾挽 2024-10-18 23:53:26

德米特里,

我刚刚使用以下代码成功地做到了这一点:

Context initial_ctx;
initial_ctx = new InitialContext();
String threshold = (String) initial_ctx.lookup("repos/threshold");

尽管在我的例子中,名称空间中的名称只是“theshold”。

您可能需要检查 Websphere 管理控制台中定义的名称空间绑定的“范围”。它可能需要匹配调用“initial_ctx.getNameInNamespace()”返回的值。就我而言确实如此,但这可能不是必要或充分的。

Dmitry,

I have just succeeded in doing this using the following code:

Context initial_ctx;
initial_ctx = new InitialContext();
String threshold = (String) initial_ctx.lookup("repos/threshold");

Although in my case the Name in the Name space was just "theshold".

You may need to check the "Scope" of your Name Space Binding as defined in the Websphere admin console. It may need to match the value returned by the call to "initial_ctx.getNameInNamespace()". It did in my case, but that may not be necessary or sufficient.

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