示例#1
0
 public String execute() throws Exception {
   // 创建ActionContext实例
   ActionContext ctx = ActionContext.getContext();
   // 获取HttpSession中的user属性
   String mgrName = (String) ctx.getSession().get(WebConstant.USER);
   // 获取需要被当前经理处理的全部申请
   setApps(mgr.getAppsByMgr(mgrName));
   return SUCCESS;
 }
示例#2
0
 public String execute() throws Exception {
   // 创建ActionContext实例
   ActionContext ctx = ActionContext.getContext();
   // 获取HttpSession中的user属性
   String mgrName = (String) ctx.getSession().get(WebConstant.USER);
   // 调用业务逻辑方法取得当前员工的全部发薪列表
   List<SalaryBean> result = mgr.getSalaryByMgr(mgrName);
   System.out.println("--------------" + result);
   setSals(result);
   return SUCCESS;
 }