Google App Engine:不支持InitialContext类

时间:2015-05-25 10:18:22

标签: google-app-engine

我使用动态网络项目的代码制作 Google App Engine项目 。 现在,有时我的代码中有ctx = new InitialContext(); SuggestServices services = (SuggestServices) ctx.lookup("SuggestServices");

从另一个容器调用服务。

但GAE不支持 InitialContext

我现在该怎么做才能调用服务?

感谢。

1 个答案:

答案 0 :(得分:0)

不仅仅支持InitialContext类,完全不支持JNDI,因此使用其他机制来注册和注入对象,例如Guice。