You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Achilleus Mantzios <rn...@gatewaynet.com> on 2002/03/21 13:33:19 UTC

Servlet wierd behaviour regarding concurrency in tomcat 4.0.1(Sorry if i sent it twice)

Hi,
I have seen a strange threading behaviour in catalina engine.
For servlets that
a) Dont implement SingleThreadModel
b) Dont synchronize over resources
c) Dont have service methods synchronized,

the server serves 2 concurrent requests to 2 clients requesting the same URL
sequentially.
Suppose the following servlet is mapped to /servlet/ThreadTest.

When i invoke from 2 clients
http://myserver/servlet/ThreadTest?foo1=bar1&foo2=bar2 and
http://myserver/servlet/ThreadTest?foo2=bar2&foo1=bar1 respectively

the server seems to spawn 2 threads running the service method of the servlet
as expected.

However when i invoke the following 2 urls (or in general IDENTICAL URLS)
e.g.

http://myserver/servlet/ThreadTest?foo1=bar1&foo2=bar2 and
http://myserver/servlet/ThreadTest?foo1=bar1&foo2=bar2 respectively

then the threads (thread?) run as if i had synchronized the service method.

This looks like a bug, here is the source of the simple servlet.

The servlet is as follows....
/*****************************************************************/
import javax.servlet.*;
import javax.servlet.http.*;

public class ThreadTest extends HttpServlet {  
    public void init(ServletConfig config) throws ServletException {
        super.init(config);
    }

    protected void processRequest(HttpServletRequest,HttpServletResponse 
response)
    throws ServletException, java.io.IOException {
        response.setContentType("text/html");
        System.out.println("In the begin damnit");
        try {
        Thread.sleep(10000);
        }
        catch (Exception e) {}
    } 

    protected void doGet(HttpServletRequest request, HttpServletResponse 
response)
    throws ServletException, java.io.IOException {
        processRequest(request, response);
    } 
    protected void doPost(HttpServletRequest request, HttpServletResponse 
response)
    throws ServletException, java.io.IOException {
        processRequest(request, response);
    }
}

-- 
Achilleus Mantzios
S/W Engineer
IT dept
Dynacom Tankers Mngmt
tel:    +30-10-8981112
fax:    +30-10-8981877
email:  it@dynacomtm.com
        rnd@gatewaynet.com


--
To unsubscribe:   <ma...@jakarta.apache.org>
For additional commands: <ma...@jakarta.apache.org>
Troubles with the list: <ma...@jakarta.apache.org>