So Im trying to store an a arraylist in a session variable and also be able to retrieve it.It is for a cart on a website.The problem is retrieving it.
Here is what I have so far in the servlet
HttpSession session = request.getSession();
ArrayList<Dvd> dvds;
dvds = new ArrayList<Dvd>()= session.getAttribute("ProductsInCart");
The compiler error is unexpected type:required variable,found value
Thanks
1 Answer