Package com.google.inject.servlet

Servlet API scopes and bindings.

See:
          Description

Class Summary
GuiceFilter Apply this filter to all requests where you plan to use servlet scopes.
GuiceServletContextListener Register your own subclass of this as a servlet context listener if you wish to have injectable servlets that extend InjectedHttpServlet.
InjectedHttpServlet Base class to be extended by all servlets that desire field and method injection to be performed during Servlet.init(javax.servlet.ServletConfig).
ServletModule Configures the servlet scopes and creates bindings for the servlet API objects so you can inject the request, response, session, etc.
ServletScopes Servlet scopes.
 

Annotation Types Summary
RequestParameters Apply this to field or parameters of type Map<String, String[]> when you want the HTTP request parameter map to be injected.
RequestScoped Apply this to implementation classes when you want one instance per request.
SessionScoped Apply this to implementation classes when you want one instance per session.
 

Package com.google.inject.servlet Description

Servlet API scopes and bindings. Apply GuiceFilter to any servlets which will use the servlet scopes. Install ServletModule into your com.google.inject.BinderImpl to install everything at once.