ActionForward forwardError = mapping.findForward("testList");
StringBuffer bf = new StringBuffer(forwardError.getPath());
bf.append("?id=id");//参数
return new ActionForward(bf.toString(),true);
也支持 redirect="true"
StringBuffer bf = new StringBuffer(forwardError.getPath());
bf.append("?id=id");//参数
return new ActionForward(bf.toString(),true);
也支持 redirect="true"