Guice Singleton Servlet绑定适用于第三方servlet

时间:2015-02-11 07:59:13

标签: java google-app-engine servlets guice

我正在试图弄清楚Singleton如何为我的代码绑定一个servlet:

public class GuiceServletModule extends ServletModule {
    @Override
    protected void configureServlets() {
        Map<String, String> params = new HashMap<String, String>();
        params.put("org.restlet.application", "com.mycomp.server.RestletApplication");
        serve("/rest/*").with(org.restlet.ext.servlet.ServerServlet.class, params);
        serve("/remote_api").with(com.google.apphosting.utils.remoteapi.RemoteApiServlet.class);
    }
}

这里的问题是应用程序需要提供的两个servlet都是第三方库(Restlet和GAE)。

抛出的异常是:

[INFO] javax.servlet.ServletException: Servlets must be bound as singletons. Key[type=org.restlet.ext.servlet.ServerServlet, annotation=[none]] was not bound in singleton scope.

当servlet是至少在此时无法修改的第三方库时,如何处理此问题。是否有解决方法使这项工作?

1 个答案:

答案 0 :(得分:12)

解决方案是添加:

    bind(RemoteApiServlet.class).in(Scopes.SINGLETON);
    bind(ServerServlet.class).in(Scopes.SINGLETON);