Struts2实现input数据回显
/** 修改页面 */
public String editUI() {
//准备回显得数据
Role role = roleService.getById(id);
ActionContext.getContext().getValueStack().push(role);
//下面的方法也能实现数据回显
// this.name = role.getName();
// this.description = role.getDescription();
return "editUI";
}