首页 > 代码库 > Struts2 动态结果集
Struts2 动态结果集
1、index.jsp
<body> 动态结果 一定不要忘了为动态结果的保存值设置set get方法 <ol> <li><a href=http://www.mamicode.com/"user/user?type=1">返回success>
2.struts.xml<struts> <constant name="struts.devMode" value=http://www.mamicode.com/"true" /> >
3.UserAction.javapackage com.wxh.action; import com.opensymphony.xwork2.ActionSupport; public class UserAction extends ActionSupport{ /** * */ private static final long serialVersionUID = 1L; private int type; private String r; public String getR() { return r; } public void setR(String r) { this.r = r; } public int getType() { return type; } public void setType(int type) { this.type = type; } //动态确定r的值 public String execute() throws Exception{ if(type==1) r="/userSuccess.jsp"; else if(type==2) r="/userError.jsp"; return "success"; } }4.userError.jsp
<body> user error! </body>
5.userSuccess.jsp<body> user Success! </body>
Struts2 动态结果集
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。