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

📄 registeraction.java

📁 非常经典的ssh整合实例
💻 JAVA
字号:
/* * Generated by MyEclipse Struts * Template path: templates/java/JavaClass.vtl */package com.briup.web.action;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.Customer;import com.briup.common.BeanFactory;import com.briup.common.exception.CustomerServiceException;import com.briup.service.ICustomerService;import com.briup.web.form.RegisterForm;/**  * MyEclipse Struts * Creation date: 02-24-2008 *  * XDoclet definition: * @struts.action path="/register" name="registerForm" input="/form/register.jsp" scope="request" validate="true" * @struts.action-forward name="success" path="/login.jsp" * @struts.action-forward name="failure" path="/register.jsp" */public class RegisterAction 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;		String name=registerForm.getName();		String password=registerForm.getPassword();		String address=registerForm.getAddress();		String zip=registerForm.getZip();		String telephone=registerForm.getTelephone();		String email=registerForm.getEmail();		Customer customer=new Customer();		customer.setAddress(address);		customer.setEmail(email);		customer.setName(name);		customer.setZip(zip);		customer.setPassword(password);		customer.setTelephone(telephone);				ICustomerService customerService=(ICustomerService) BeanFactory.getBean(BeanFactory.CUSTOMERSERVICE);	    try{	    	customerService.register(customer);	    	return mapping.findForward("success");	    }catch(CustomerServiceException e){	    	e.printStackTrace();	    	request.setAttribute("message",e.getMessage());	    	return mapping.findForward("failure");	    }			}}

⌨️ 快捷键说明

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