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

📄 checkmanageaction.java

📁 实现网上订餐系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.eatery.struts.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.ManageInfo;
import com.eatery.service.ManageInfoService;
import com.eatery.struts.form.ManageInfoForm;

public class CheckManageAction extends Action {
	private ManageInfoService service;
	public ManageInfoService getService() {
		return service;
	}
	public void setService(ManageInfoService service) {
		this.service = service;
	}
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		
		String rand=request.getParameter("randCode");
		StringBuffer random=(StringBuffer) request.getSession().getAttribute("RandomCode");
		if(!random.toString().equals(rand)){
			ActionErrors ae=new ActionErrors();
			ae.add("randError",new ActionError("error"));
			saveErrors(request, ae);
			return mapping.getInputForward();
		}
		
		ManageInfoForm mif=(ManageInfoForm) form;
		ManageInfo mi=new ManageInfo();
		
		mi.setMName(mif.getManName());
		mi.setMPass(mif.getManPass());

		ManageInfo manage = service.findManageByNameAndPass(mi);
		
		if(manage!=null){
			request.getSession().setAttribute("MANAGE", manage);
			return mapping.findForward("ok");
		}
		return null;
	}
}

⌨️ 快捷键说明

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