LessZoa 0 Newbie Poster

I have a live website that is experiencing periodic errors where data is not making it into the DB - yet certain functions are still progressing.

In an attempt at tracking the jdbc connection errors, I've manually updated various fields with accurate data. When I go back to the webapp and attempt to call up a record, I receive the following:

ERROR 2009-08-25 15:04:30,071 org.apache.jsp.manager.error_jsp._jspService(error_jsp.java:399) - Exception Caught.
java.lang.ArrayIndexOutOfBoundsException: 1

And then several BOs and DTOs are named (cannot elaborate due to security issues) - but they all deal with the one data field I updated in my db.

When I revert the data in the db, the error disappears and the webapp is able to call up my record(s).

Now, I know the java array is most likely out of sync when I change the data - for after checking the data table arrays they are all fine.

My question is - how do I sync my java arrays after I update a data table? Restarting the webapp doesn't help.