Is it required/good practice to set the connection reference to null after closing it?
I am closing connections in finally
block.
conn.close();
conn = null;
I am facing connection wait timeout exception during performance testing as the maximum connections are getting exceeded.