摘要: 最常用的public class ListAction extends ActionSupport implements RequestAware{ private Map request; StuffDao sd=new StuffDaoImp(); @Override public String execute() throws Exception { List stuffs=sd.list(); request.put("list", stuffs); return SUCCESS; } public void... 阅读全文
posted @ 2014-03-18 19:19 xxyyjj 阅读(159) 评论(0) 推荐(0) 编辑