PersonAction.java
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. package com.bjsxt.oa.web.actions;
  2. import javax.servlet.http.HttpServletRequest;
  3. import javax.servlet.http.HttpServletResponse;
  4. import org.apache.commons.beanutils.BeanUtils;
  5. import org.apache.struts.action.ActionForm;
  6. import org.apache.struts.action.ActionForward;
  7. import org.apache.struts.action.ActionMapping;
  8. import com.bjsxt.oa.managers.PersonManager;
  9. import com.bjsxt.oa.model.Person;
  10. import com.bjsxt.oa.web.forms.PersonActionForm;
  11. public class PersonAction extends BaseAction {
  12. private PersonManager personManager;
  13. @Override
  14. protected ActionForward unspecified(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
  15. request.setAttribute("pm",
  16. personManager.searchPersons()
  17. );
  18. return mapping.findForward("index");
  19. }
  20. //打开添加界面
  21. public ActionForward addInput(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
  22. return mapping.findForward("add_input");
  23. }
  24. public ActionForward add(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
  25. //从页面表单接收数据
  26. PersonActionForm paf = (PersonActionForm)form;
  27. Person person = new Person();
  28. BeanUtils.copyProperties(person, paf);
  29. personManager.addPerson(person, paf.getOrgId());
  30. return mapping.findForward("pub_add_success");
  31. }
  32. public ActionForward del(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
  33. PersonActionForm paf = (PersonActionForm)form;
  34. personManager.delPerson(paf.getId());
  35. return mapping.findForward("pub_del_success");
  36. }
  37. public void setPersonManager(PersonManager personManager) {
  38. this.personManager = personManager;
  39. }
  40. }