在 JBoss 5.1 中以编程方式确定 JNDI 根上下文/ear 名称

发布于 2024-09-30 20:39:00 字数 224 浏览 1 评论 0原文

JBoss 5.1 中 EJB 的默认 jndi 上下文是“earname/ejbname/local”。在某些注入不可用的情况下,我需要手动执行 jndi 查找,但是如果我的 ejb jar 文件打包在不同的 EAR 中,我希望有一种可移植的方式来维护查找帮助程序类。

我知道有一种方法可以做到这一点,因为我以前见过它,但现在找不到它。我想以编程方式查找当前的应用程序名称或耳朵名称。

有什么想法吗?

The default jndi context in JBoss 5.1 for an EJB is "earname/ejbname/local". In some instances where injection is not available I need to manually do a jndi lookup, however if my ejb jar file is packaged in different EAR's I'd like to have a portable way to maintain a look up helper class.

I know a method to do this exists as I've seen it before but can't find it now. I'd like to programmatically find the current application name or ear name.

Any ideas?

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

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

发布评论

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

评论(2

面如桃花 2024-10-07 20:39:00

通过试用发现jboss 6.1 的错误:

    InitialContext ic = new InitialContext();
    String moduleName = (String) ic.lookup("java:module/ModuleName");
    String appName = (String) ic.lookup("java:app/AppName");

Found through trial & error for jboss 6.1:

    InitialContext ic = new InitialContext();
    String moduleName = (String) ic.lookup("java:module/ModuleName");
    String appName = (String) ic.lookup("java:app/AppName");
望她远 2024-10-07 20:39:00

我知道有一种方法可以做到这一点,因为我以前见过它,但现在找不到它。我想以编程方式查找当前应用程序名称或耳朵名称。

我不知道有任何明显的方法可以做到这一点(并不是说这是不可能的,尽管我认为应用程序名称或耳朵名称更多的是“部署者”角色关注),我的建议是:

  • 使用覆盖默认的 JNDI 名称jboss.xml ~或~
  • 从服务定位器读取属性文件(并让构建系统生成它)

另请参阅

I know a method to do this exists as I've seen it before but can't find it now. I'd like to programmatically find the current application name or ear name.

I'm not aware of any obvious way to do that (not saying it's impossible, although I think the application name or ear name are more a "deployer" role concern) and my suggestion would be to either:

  • override the default JNDI names using a jboss.xml ~or~
  • read a properties file (and have your build system generate it) from your service locator

See also

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