我一直在阅读有关JBoss Naming Service JNDI提供程序的文章。

我击中了我在代码中见过的东西,但经历了上百万次,但我从未真正真正地理解过-ENC。

// Obtain the application component's ENC
Context iniCtx = new InitialContext();
Context compEnv = (Context) iniCtx.lookup("java:comp/env");


我从阅读了有关ENC的一些信息

Stackoverflow article with an answer that describes ENC a bit

J2EE and JNDI - The Application Component Environment

Another Stackoverflow article

但是,我真的很难理解何时以及为什么使用java:comp / env JNDI上下文。谁能为我分解?

最佳答案

ENC的目的是提供一个隔离的只读名称空间,应用程序组件可以依赖该命名空间,而与组件所部署的环境类型无关。

07-28 05:09