不是太理解你的意思,
信息可以存在session中,在jsp页面里读出来
action:
public String list() {
try {
List
ActionContext.getContext().getSession().put("voterList", list);
return "list";
} catch (Exception e) {
e.printStackTrace();
return ERROR;
}
}
list.jsp:
${voter.userId }
${voter.userName }
struts.xml: