基于struts2的JSP页面执行action跳转新的jsp页面之后,新的jsp页面如何自动显示出执行action后的内容?

2024-11-27 21:45:20
推荐回答(1个)
回答(1):

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


${voter.userId }
${voter.userName }


struts.xml:

login.jsp
user_list
/WEB-INF/list.jsp
registerSuccess.jsp