PrinfKhxxAction.java
上传用户:quasar007
上传日期:2022-08-11
资源大小:4067k
文件大小:1k
源码类别:

企业管理

开发平台:

Java

  1. package com.webtier.queryInformation;
  2. import org.apache.struts.action.ActionMapping;
  3. import org.apache.struts.action.ActionForm;
  4. import javax.servlet.http.HttpServletRequest;
  5. import javax.servlet.http.HttpServletResponse;
  6. import org.apache.struts.action.ActionForward;
  7. import com.domain.KhxxForm;
  8. import org.apache.struts.action.Action;
  9. import com.service.KhxxFacade;
  10. import com.service.KhxxFacadeImpl;
  11. public class PrinfKhxxAction
  12.     extends Action {
  13.   private KhxxFacade facade = null;
  14.     public PrinfKhxxAction() {
  15.       this.facade = new KhxxFacadeImpl();
  16.     }
  17.     public ActionForward perform(ActionMapping actionMapping,
  18.                                  ActionForm actionForm,
  19.                                  HttpServletRequest httpServletRequest,
  20.                                  HttpServletResponse httpServletResponse) {
  21.       KhxxForm khxxForm = (KhxxForm) actionForm;
  22.       khxxForm.setKhxx_id(httpServletRequest.getParameter("id"));
  23.       KhxxForm form = this.facade.khxxSelectOne(khxxForm);
  24.     httpServletRequest.setAttribute("form", form);
  25.     return actionMapping.findForward("prinfKhxxAction");
  26.   }
  27. }