码迷,mamicode.com
首页 > Web开发 > 详细

Struts2网页面传值两种方式

时间:2016-09-01 23:06:41      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

第一种方式:

/** 列表 */
public String list() throws Exception {
List<Role> roleList = roleService.findAll();
ActionContext.getContext().put("roleList", roleList);
return "list";
}

 

第二种方式:

/** 修改页面 */

private Role model = new Role();
public String editUI() throws Exception {
// 准备回显的数据
Role role = roleService.getById(model.getId());
ActionContext.getContext().getValueStack().push(role);

return "saveUI";
}

Struts2网页面传值两种方式

标签:

原文地址:http://www.cnblogs.com/qiyc/p/5831548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!