You don't want to save the info on the session?
Keep it on the JSP in <input type="hidden" name="hiddenField" value="yourInfoHere">
Everytime the user submits the form containing the hidden fields the info will be sent along to the servlet and when it goes on to the next JSP you can get it again with <%=request.getParameter("hiddenField")%>