jsp session

hi all,can i store large vectors in session?how to retrieve vectors from servlet in my jsp?and how to store that vector so that i can retrieve in my other jsp?
[173 byte] By [paridaa] at [2007-11-27 6:15:45]
# 1

> can i store large vectors in session

you can store any object in the session. The size is only limited by the amount of memory assigned to java.

> how to retrieve vectors from servlet in my jsp

Store the vectors in the request using request.setAttribute():

request.setAttribute("myvector", vector);

Forward to the JSP and in the JSP you can do this:

<c:forEach items="${requestScope.myvector}" var="current">

${current}

</c:forEach>

gimbal2a at 2007-7-12 17:26:45 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...