-
Ok, perhaps some of you remember my post about IllegalStateException and what caused it on my first post. You can find it here . Right now, I encountered another one and this time, the servlet caused the exception and not the JSP. Got the solution right here . First, take a look at my code. 1 2 3 4 5...
-
Hmmm... I always had a single connection object active for the entire app. After I discovered that only one servlet is instantiated for every servlet class in the application this problem quickly popped in my mind. Actually, this was a worry I just ignored in the past since I had total control over the...