I am trying to set an attribute of type list in a class and getting the attribute from the class to jsp by using following:
First setting the attribute by using
actionRequest.setAttribute("SEARCH_RESULT",result);
For getting the object using the following
request.getAttribute("SEARCH_RESULT");
But the above code always produces a null
, why?