WebSphere Portal:名称空间绑定。如何获取变量?
我有一个绑定到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
德米特里,
我刚刚使用以下代码成功地做到了这一点:
尽管在我的例子中,名称空间中的名称只是“theshold”。
您可能需要检查 Websphere 管理控制台中定义的名称空间绑定的“范围”。它可能需要匹配调用“initial_ctx.getNameInNamespace()”返回的值。就我而言确实如此,但这可能不是必要或充分的。
Dmitry,
I have just succeeded in doing this using the following code:
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.