xfmxsearchaction.java

来自「struts+hibernate3的源程序」· Java 代码 · 共 42 行

JAVA
42
字号
package org.helpsoft.actions;

import javax.servlet.http.*;

import org.apache.struts.action.*;

import com.helpsoft.util.log.*;
import org.helpsoft.forms.XfmxSearchForm;

/**
 * The submit action for the xfmx search screen.
 *
 * @author  cao guangxin - www.relationinfo.com
 * @struts.action path="/XfmxSearch"
 *                type="org.helpsoft.actions.XfmxSearchAction"
 *                name="xfmxSearchForm"
 *                scope="request"
 *                input="/xfmxList.jsp"
 * @struts.action-forward name="success" path="/initXfmx.do"
 */
public class XfmxSearchAction extends ServiceAction {

   private static Logger log = LogService.getLogger(XfmxSearchAction.class);

   /**
    * Performs an action.
    *
    * @param mapping The ActionMapping used to select this instance
    * @param form The optional ActionForm bean for this request (if any)
    * @param request The optional ActionForm bean for this request (if any)
    * @param response The HTTP response we are creating
    * @return describes where and how control should be forwarded, or <code>null</code> if the response has already
    *         been completed
    * @throws Exception in case of an error
    */
   public ActionForward doPerform(ActionMapping mapping, ActionForm form, HttpServletRequest request,
                                HttpServletResponse response) throws Exception {

      return mapping.findForward("success");
   }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?