コード例 #1
0
  public ActionForward goStatic(
      ActionMapping mapping,
      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse response)
      throws Exception {
    List departmentTree = departmentService.getDepartmentTree(0, null);
    request.setAttribute("departmentTree", departmentTree);

    request.setAttribute("leave_startDate", DateUtilExtend.getNowDate());
    request.setAttribute("leave_endDate", DateUtilExtend.getNowDate());
    return mapping.findForward("leaveInfoQuery");
  }