This simply means that you're trying to retrieve a value from the array while the given index is out of the bounds.
String[] stringArray = new String[3]; // definies array of 3 Strings.
System.out.println(stringArray[3]); // try to retrieve the 4th element while it isn't actually definied
will throw an ArrayIndexOutOfBoundsException.
I'm not using any array at all. I'm using two jsp say j1 and j2 and moving between these two jsps using jsp:forward. Ofcourse I'm having two combobox in j1 and the values are loaded from database for these two comboboxes.
Also this error doesn't occur first time. When it is 4th time moving from j2 to j1, this error occurs.
What cud be the problem?