<span style="font-size:18px;"> @Override
public String execute()
throws Exception
{
list = new ArrayList<String>(2);
list.add(name1);
list.add(name2);
ActionContext actionContext = ActionContext.getContext();
Map session = actionContext.getSession();
session.put("list", list);
<span style="color:#ff0000;">HttpServletRequest request = ServletActionContext.getRequest(); </span>
request.setAttribute("listrequest", list);
return SUCCESS;
} </span>