📄 inithyxfaction.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.hyxf.*;
import com.helpsoft.Constants;
import org.helpsoft.forms.*;
/**
* Struts 'Init' Action; prepares any information needed prior to displaying the 'hyxfForm'.
*
* @author cao guangxin - www.relationinfo.com
* @struts.action path="/initHyxf"
* type="org.helpsoft.actions.InitHyxfAction"
* name="hyxfForm"
* scope="session"
* validate="false"
* @struts.action-forward name="success" path="/hyxf.jsp"
*/
public class InitHyxfAction 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");
HyxfForm form = (HyxfForm) actionForm;
HttpSession session = request.getSession();
String wzkqjg = request.getParameter("wzkqjg");
if (wzkqjg != null && wzkqjg.equalsIgnoreCase("null")) {
wzkqjg = null;
}
if (form == null) {
form = new HyxfForm();
if ("request".equals(mapping.getScope())) {
request.setAttribute(mapping.getAttribute(), form);
}
else {
session.setAttribute(mapping.getAttribute(), form);
}
}
if (wzkqjg != null && true) { // hack to allow automatic generation of sources with JAG
try {
form.setMode("change");
HyxfIf hyxfData = getAssociatorManageService().getHyxf(new java.lang.String(wzkqjg));
PropertyUtilsExt.copyProperties(form, hyxfData);
HyForm hyHykhForm = new HyForm();
org.helpsoft.entity.hy.HyIf hyHykh = hyxfData.getHykhHy();
if (hyHykh != null) {
PropertyUtilsExt.copyProperties(hyHykhForm, hyHykh);
form.setHykhHy(hyHykhForm);
}
}
catch (Throwable t) {
servlet.log("InitHyxfAction :", t);
throw new ServletException("InitHyxfAction :", t);
}
}
else {
form.setMode("new");
PropertyUtilsExt.copyProperties(form, new HyxfData());
}
return mapping.findForward("success");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -