Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用 Jetty 开发应用程序 Web 服务器。在容器中,我们制作了一些静态实例,可以在同一个容器加载的 webapp 中使用。但是我们找不到使用实例的方法。
您在这里与类加载器隔离作斗争,设计上不允许另一个 Web 应用访问一个 Web 应用中的对象实例。
您应该将 JNDI 视为一种创建应该共享和链接的事物的方式。例如,这是多个应用程序共享数据库池的常见模式。