📄 initsplbaction.java
字号:
package org.helpsoft.actions;
import javax.servlet.*;
import javax.servlet.http.*;
import java.text.SimpleDateFormat;
import org.helpsoft.servicelocator.*;
import org.helpsoft.session.AssociatorManageService;
import org.apache.struts.action.*;
import com.helpsoft.util.log.*;
import com.helpsoft.util.*;
import com.helpsoft.util.genelv.struts.GenericAction;
import org.helpsoft.session.*;
import org.helpsoft.entity.splb.*;
import com.helpsoft.Constants;
import org.helpsoft.forms.*;
/**
* Struts 'Init' Action; prepares any information needed prior to displaying the 'splbForm'.
*
* @author cao guangxin - www.relationinfo.com
* @struts.action path="/initSplb"
* type="org.helpsoft.actions.InitSplbAction"
* name="splbForm"
* scope="request"
* validate="false"
* @struts.action-forward name="success" path="/splb.jsp"
*/
public class InitSplbAction extends ServiceAction {
private Logger log = LogService.getLogger(this.getClass());
/**
* Performs an action.
*
* @param mapping The ActionMapping used to select this instance
* @param actionForm 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 actionForm, HttpServletRequest request,
HttpServletResponse response) throws Exception {
log.info("start doPerform");
SplbForm form = (SplbForm) actionForm;
HttpSession session = request.getSession();
String splbbm = request.getParameter("splbbm");
if (splbbm != null && splbbm.equalsIgnoreCase("null")) {
splbbm = null;
}
if (form == null) {
form = new SplbForm();
if ("request".equals(mapping.getScope())) {
request.setAttribute(mapping.getAttribute(), form);
}
else {
session.setAttribute(mapping.getAttribute(), form);
}
}
if (splbbm != null && true) { // hack to allow automatic generation of sources with JAG
try {
form.setMode("change");
SplbIf splbData = getAssociatorManageService().getSplb(new java.lang.String(splbbm));
PropertyUtilsExt.copyProperties(form, splbData);
}
catch (Throwable t) {
servlet.log("InitSplbAction :", t);
throw new ServletException("InitSplbAction :", t);
}
}
else {
form.setMode("new");
PropertyUtilsExt.copyProperties(form, new SplbData());
}
return mapping.findForward("success");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -