pass an Object from one jsp page to another on form sumbit ....
I DONT WANT TO USE SESSION to pass the objects
Then you are out of luck. A forward will not help you since that will just forward to the new JSP page within the context of the same request (in other words, no form submission).
You can pass text data across the request context change via request parameters, but not objects.
So except for tacking objects onto the session or
servlet context, there's no practical way to preserve object instances.
bear