PersonAction.java
资源名称:oa.rar [点击查看]
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:2k
源码类别:
OA系统
开发平台:
Java
- package com.bjsxt.oa.web.actions;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import org.apache.commons.beanutils.BeanUtils;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionForward;
- import org.apache.struts.action.ActionMapping;
- import com.bjsxt.oa.managers.PersonManager;
- import com.bjsxt.oa.model.Person;
- import com.bjsxt.oa.web.forms.PersonActionForm;
- public class PersonAction extends BaseAction {
- private PersonManager personManager;
- @Override
- protected ActionForward unspecified(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
- request.setAttribute("pm",
- personManager.searchPersons()
- );
- return mapping.findForward("index");
- }
- //打开添加界面
- public ActionForward addInput(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
- return mapping.findForward("add_input");
- }
- public ActionForward add(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
- //从页面表单接收数据
- PersonActionForm paf = (PersonActionForm)form;
- Person person = new Person();
- BeanUtils.copyProperties(person, paf);
- personManager.addPerson(person, paf.getOrgId());
- return mapping.findForward("pub_add_success");
- }
- public ActionForward del(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
- PersonActionForm paf = (PersonActionForm)form;
- personManager.delPerson(paf.getId());
- return mapping.findForward("pub_del_success");
- }
- public void setPersonManager(PersonManager personManager) {
- this.personManager = personManager;
- }
- }