loginaction.java
来自「一个J2EE 做的 网上图书销售管理系统」· Java 代码 · 共 64 行
JAVA
64 行
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.briup.web.servlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import com.briup.bean.RegisterForm;
import com.briup.common.BeanFactory;
import com.briup.common.exception.CustomerServiceException;
import com.briup.service.ICustomerService;
/**
* MyEclipse Struts Creation date: 04-10-2008
*
* XDoclet definition:
*
* @struts.action validate="true"
*/
public class LoginAction extends Action {
/*
* Generated Methods
*/
/**
* Method execute
*
* @param mapping
* @param form
* @param request
* @param response
* @return ActionForward
*/
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
RegisterForm registerForm = (RegisterForm) form;// TODO Auto-generated
// method stub
// response.setContentType("text/html");
String name = request.getParameter("name");
String password = request.getParameter("password");
ICustomerService customerService = (ICustomerService) BeanFactory
.getBean(BeanFactory.FcustomerService);
try {
RegisterForm customer = customerService.login(name, password);
System.out.println("orderforms = " + customer.getOrderforms());
request.getSession().setAttribute("customer", customer);
return mapping.findForward("success");
} catch (CustomerServiceException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return mapping.findForward("failure");
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?