here is my code where i am send a list of GroupDTOI type as a list in session so how can i receive it in jsp and iterate it.
ArrayList<GroupDTO> groupList = new ArrayList<GroupDTO>();
groupList = new GroupList().setList();
HttpSession session = request.getSession();
session.setAttribute("groupList", groupList);
You should be able to do it through JSTL as shown here or through the use of the
<%%>tags as shown here.