When I try to set the value of a list in Servlet to a session variable and access it JSP like,
doGet
HttpSession session = request.getSession(true);
session.setAttribute("MySessionVariable", authorizeUserList);
JSP
<%List lst = session.getAttribute("MySessionVariable");%>
I get an error in JSP as "List cannot be resolved to a type"
So how should I do this? I want to pass a list from Servlet to JSP and populate a Drop down.