multiple connection « Connection « JSP-Servlet Q&A





1. Sending multiple files to a servlet with a single connection    stackoverflow.com

I'm writing a Java desktop client which will send multiple files over the wire to a servlet using a post request. In the servlet I'm getting the input stream from ...

2. multiple users with single connection    java-forums.org

3. do we need multiple connection objects    java-forums.org

Heys all, i have a class with a static reference to a java.sql.Connection object. i mainly call the object's prepareStatement(). Every other servlet that needs the DB will basically contact this class and they will all share the same connection object. I'm wondering if i'm going to bump into some real concurrency issues or is it perfectly alright to do so? ...