RankInfoDTO info = dao.getRankInfo(Integer.parseInt(piForm
.getId()));
rForm = new RankForm();
BeanUtils.copyProperties(rForm, info);
} catch (SQLException e) {
throw new SystemException(e);
} catch (IllegalAccessException e) {
throw new SystemException(e);
} catch (InvocationTargetException e) {
throw new SystemException(e);
}
request.setAttribute("rankForm", rForm);
}
return mapping.getInputForward();
}