thanks, Alwyn Schoeman for explain, but due to the parameter passing are list , so i need to apply either session or request.setAttribute("myList"), but it good if i send the list over to page2.jsp with fresh list, in order to avoid keep other previous list, of course i can use session.removeAttribute(), but request.setAttribute will save few line of code like validation and so on
so conclusion, we can't use request.getAttribute() in page2.jsp if we forward setAttribute from page1.jsp

...thank you for guidance anyway
if we use response.sendRedirect() , would it help ?