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

📄 adduserinfoaction.java

📁 实现网上订餐系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.eatery.user.action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

import com.eatery.po.Credit;
import com.eatery.po.UserInfo;
import com.eatery.service.CreditService;
import com.eatery.service.UserInfoService;
import com.eatery.struts.form.UserInfoForm;
import com.eatery.util.MD5;


public class AddUserInfoAction extends Action {
	private UserInfoService service;
	private CreditService creditService;
	public CreditService getCreditService() {
		return creditService;
	}
	public void setCreditService(CreditService creditService) {
		this.creditService = creditService;
	}
	public UserInfoService getService() {
		return service;
	}
	public void setService(UserInfoService service) {
		this.service = service;
	}
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		
		StringBuffer random=(StringBuffer) request.getSession().getAttribute("RandomCode");
		String rand=request.getParameter("randCode");
		
		if(!random.toString().equals(rand)){
			ActionErrors ae=new ActionErrors();
			ae.add("randError",new ActionError("error"));
			saveErrors(request, ae);
			return mapping.getInputForward();
		}
		MD5 md5=new MD5();
		
		UserInfoForm uif = (UserInfoForm) form;
		UserInfo ui=new UserInfo();
		
		ui.setUName(uif.getUserName());
		ui.setUPass(md5.getMD5ofStr(uif.getUserPass1()));
		ui.setURealName(uif.getRealName());
		ui.setUPaperCode(uif.getPaperCode());
		ui.setUAge(uif.getUserAge());
		ui.setUSex(uif.getUserSex());
		ui.setUTel(uif.getUserTel());
		ui.setUAddress(uif.getUaddress());
		ui.setUEmail(uif.getUemail());
		
		
		service.addUserInfo(ui);
		
		Credit c=new Credit();
		c.setUCount(0);
		c.setUserInfo(ui);
		creditService.saveCredit(c);
		
		return mapping.findForward("ok");
	}
}

⌨️ 快捷键说明

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