Ok so I am trying to pass a java Set object that is being created in one JSP, lets call it jspA.jsp to another jsp, lets call it jspB.jsp. What I am about to attempt and hopefully will work is the following line of code:
<jsp: param name="setList" value="<%=setObject%>">
and on the other JSP i will just be using a getParameter("setList") call to retrieve the set. I was just wondering if there were any other suggestions to accomplishing this or would this be the best way to go about it?