Revision: 972
http://stripes.svn.sourceforge.net/stripes/?rev=972&view=rev
Author: bengunter
Date: 2008-10-10 20:25:42 +0000 (Fri, 10 Oct 2008)
Log Message:
-----------
Fixed STS-613, as suggested.
Modified Paths:
--------------
trunk/stripes/src/net/sourceforge/stripes/controller/DispatcherServlet.java
Modified:
trunk/stripes/src/net/sourceforge/stripes/controller/DispatcherServlet.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/controller/DispatcherServlet.java
2008-10-08 03:05:08 UTC (rev 971)
+++ trunk/stripes/src/net/sourceforge/stripes/controller/DispatcherServlet.java
2008-10-10 20:25:42 UTC (rev 972)
@@ -30,7 +30,6 @@
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.JspFactory;
import javax.servlet.jsp.PageContext;
-import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.Stack;
@@ -60,13 +59,6 @@
/** Log used throughout the class. */
private static final Log log = Log.getInstance(DispatcherServlet.class);
- /** Implemented as a simple call to doPost(request, response). */
- @Override
- protected void doGet(HttpServletRequest request, HttpServletResponse
response)
- throws ServletException, IOException {
- doPost(request, response);
- }
-
/**
* <p>Invokes the following instance level methods in order to coordinate
the processing
* of requests:</p>
@@ -88,7 +80,7 @@
* @throws ServletException thrown when the system fails to process the
request in any way
*/
@Override
- protected void doPost(final HttpServletRequest request, final
HttpServletResponse response)
+ protected void service(final HttpServletRequest request, final
HttpServletResponse response)
throws ServletException {
// It sucks that we have to do this here (in the request cycle), but
there doesn't
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development