基于JSP+Servlet网上书城

开发环境:idea+mysql

使用技术:jsp+servlet

关键代码:

public class AdminServlet extends HttpServlet {
	private static final long serialVersionUID = 1L;
	//声明AdminService对象
	AdminService adminService=new AdminServiceImpl();
	
	protected void service(HttpServletRequest req, HttpServletResponse resp) 
			throws ServletException, IOException {
		//获取操作符
		String oper=req.getParameter("oper");
		//调用操作符对应方法
		if("adminLoginByAdminNameAndAdminPwd".equals(oper)) {
			//调用管理员登录方法
			adminLoginByAdminNameAndAdminPwdServlet(req,resp);
		}else if("adminQuit".equals(oper)) {
			//调用管理员退出的方法
			adminQuitServlet(req,resp);
		}
	}

	/**
	 * 管理员退出登录
	 * @param req
	 * @param resp
	 * @throws IOException 
	 * @throws ServletException 
	 */
	private void adminQuitServlet(HttpServletRequest req, HttpServletResponse resp) 
			throws ServletException, IOException {
		//处理请求信息
		req.getSession().invalidate();
		//响应处理结果
		resp.sendRedirect(req.getContextPath()+"/adminjsps/login.jsp");
		return;
	}

	/**
	 * 管理员登录功能方法
	 * @param req
	 * @param resp
	 * @throws IOException
	 * @throws ServletException
	 */
	private void adminLoginByAdminNameAndAdminPwdServlet(HttpServletRequest req, HttpServletResponse resp) 
			throws IOException, ServletException {
		//获取数据
		String adminName=req.getParameter("adminName");
		String adminPwd=req.getParameter("adminPwd");
		//处理请求信息
		Admin admin=adminService.findAdminByAdminNameAndAdminPwdDao(adminName, adminPwd);
		//响应处理结果
		if(admin!=null) {
			adminName=URLEncoder.encode(adminName,"utf-8");
			Cookie cookie=new Cookie("adminname",adminName);
			cookie.setMaxAge(3*24*3600);
			cookie.setPath(req.getContextPath()+"/adminjsps/login.jsp");
			resp.addCookie(cookie);
			req.setAttribute("name", adminName);
			req.getSession().setAttribute("admin", admin);
			resp.sendRedirect(req.getContextPath()+"/adminjsps/admin/index.jsp");
			return;
		}else {
			req.setAttribute("msg", "用户名或密码错误");
			req.getRequestDispatcher("/adminjsps/login.jsp").forward(req, resp);
			return;
		}
	}

}

 

项目下载:基于JSP+Servlet网上书城 

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

aqiu12316

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值