google / guice

Guice (pronounced 'juice') is a lightweight dependency injection framework for Java 11 and above, brought to you by Google.
https://github.com/google/guice
Apache License 2.0
12.51k stars 1.67k forks source link

Request Dispatcher must dispatch from web.xml to Guice Servlet #302

Open gissuebot opened 10 years ago

gissuebot commented 10 years ago

From dhanji on January 04, 2009 01:39:01

Currently, the Guice Servlet Request Dispatcher allows dispatch from:

* Guice Servlets to Guice Servlets

But appears not to be performing dispatch from web.xml (for example, a <jsp:include> tag) to Guice Servlets.

Original issue: http://code.google.com/p/google-guice/issues/detail?id=302

gissuebot commented 10 years ago

From oli.gauti on March 05, 2009 06:29:59

I am using Guice and Guice-Servlet snapshots from 20090205. I have a filter defined as:

filter("/*").through(LicenseFilter.class);

This filter under certain circumstances includes a JSP, via:

request.getRequestDispatcher("/license_expired.jsp").include(request, response);

The JSP is not processed, but is rather just served up as text/plain. Is this related?

gissuebot commented 10 years ago

From limpbizkit on April 26, 2009 23:21:27

(No comment was entered for this change.)

Labels: Extension-Servlet

gissuebot commented 10 years ago

From sberlin on February 21, 2011 17:53:05

(No comment was entered for this change.)

Labels: -Milestone-Release2.0

gissuebot commented 10 years ago

From dhanji on February 21, 2011 20:01:40

This should be fixed. Is this problem still occuring?