⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loginaction.java

📁 一个J2EE 做的 网上图书销售管理系统
💻 JAVA
字号:
/*
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -