Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion Issue 618 in google-guice: Make guice-servlet more adaptable

Received: by 10.52.240.204 with SMTP id wc12mr15623398vdc.2.1318892213230;
        Mon, 17 Oct 2011 15:56:53 -0700 (PDT)
X-BeenThere: google-guice-dev@googlegroups.com
Received: by 10.220.215.71 with SMTP id hd7ls37006vcb.5.gmail; Mon, 17 Oct
 2011 15:56:52 -0700 (PDT)
Received: by 10.52.30.130 with SMTP id s2mr15568561vdh.6.1318892212724;
        Mon, 17 Oct 2011 15:56:52 -0700 (PDT)
Received: by 10.52.30.130 with SMTP id s2mr15568560vdh.6.1318892212716;
        Mon, 17 Oct 2011 15:56:52 -0700 (PDT)
Return-Path: <3tLKcTgwOAAcnvvnsl-n1pjlnvvnsljvkl....@codesite.bounces.google.com>
Received: from mail-qw0-f76.google.com (mail-qw0-f76.google.com [209.85.216.76])
        by gmr-mx.google.com with ESMTPS id ch9si15755vdc.0.2011.10.17.15.56.52
        (version=TLSv1/SSLv3 cipher=OTHER);
        Mon, 17 Oct 2011 15:56:52 -0700 (PDT)
Received-SPF: pass (google.com: domain of 3tLKcTgwOAAcnvvnsl-n1pjlnvvnsljvkl....@codesite.bounces.google.com designates 209.85.216.76 as permitted sender) client-ip=209.85.216.76;
Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of 3tLKcTgwOAAcnvvnsl-n1pjlnvvnsljvkl....@codesite.bounces.google.com designates 209.85.216.76 as permitted sender) smtp.mail=3tLKcTgwOAAcnvvnsl-n1pjlnvvnsljvkl....@codesite.bounces.google.com
Received: by qadc10 with SMTP id c10so15033qad.5
        for <google-guice-dev@googlegroups.com>; Mon, 17 Oct 2011 15:56:52 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.224.176.4 with SMTP id bc4mr13392196qab.8.1318892212396; Mon,
 17 Oct 2011 15:56:52 -0700 (PDT)
Reply-To: codesite-nore...@google.com
X-Generated-By: Google Code
X-GoogleCode-Project: google-guice
X-GoogleCode-Issue-Id: 618
References: <3-1492727805935382846-2022945685043082284-google-guice=googlecode.com@googlecode.com>
 <0-1492727805935382846-2022945685043082284-google-guice=googlecode.com@googlecode.com>
In-Reply-To: <3-1492727805935382846-2022945685043082284-google-guice=googlecode.com@googlecode.com>
Message-ID: <4-1492727805935382846-2022945685043082284-google-guice=googlecode.com@googlecode.com>
Date: Mon, 17 Oct 2011 22:56:52 +0000
Subject: Re: Issue 618 in google-guice: Make guice-servlet more adaptable
From: google-gu...@googlecode.com
To: google-guice-dev@googlegroups.com
Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes


Comment #4 on issue 618 by isaac.q....@gmail.com: Make guice-servlet more  
adaptable
http://code.google.com/p/google-guice/issues/detail?id=618

Instead of changing visibility, can you instead create a composite Filter  
that chains the individually created GuiceFilters together?

new ChainedFilter(
   injector1.getInstance(GuiceFilter.class),
   ...
   injectorN.getInstance(GuiceFilter.class));