博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jsp电子商务 购物车实现之二 登录和分页篇
阅读量:4913 次
发布时间:2019-06-11

本文共 2091 字,大约阅读时间需要 6 分钟。

登录页面核心代码

用户登陆

用户名:
密 码:
 

LoginServlet的参考代码:

public void doPost(HttpServletRequest request, HttpServletResponse response)			throws ServletException, IOException {		String username = request.getParameter("username");		String password = request.getParameter("password");				UserinfoDao ud = new UserinfoDaoImpl();				Userinfo userinfo = ud.findByNameAndPwd(username, password);		//如果登陆成功,则去bookListServlet		if(userinfo!=null){			request.getSession().setAttribute("userinfo", userinfo);			response.sendRedirect("BooklistServlet");		}		else{			response.sendRedirect("login.jsp");		}			}
BooklistServlet的参考代码:

protected void doPost(HttpServletRequest req, HttpServletResponse resp)			throws ServletException, IOException {		String page = req.getParameter("page");		if(page==null){			page="1";//第一次传过来就是默认首页		}		int pageindex = Integer.parseInt(page);//否则,可能是第2页等		BookDao bd = new BookDaoImpl();		List
books = bd.findBookByPage(pageindex, 3);//3:每页多少数据 int count = bd.count(); PageControler pc = new PageControler(); int total = pc.getTotalPages(count, 3);//总页数 //通过request设置属性,+forward转向; req.setAttribute("pageindex", pageindex);// HttpSession session=req.getSession();// session.setAttribute("books",books); 也可以,可以直接跳转; req.setAttribute("books",books); req.setAttribute("total",total); req.getRequestDispatcher("index.jsp").forward(req,resp); }
购物车页面显示代码段参考:

@ 书名 简介 价格 库存 图片预览
${book.bookname} ${book.info} ¥${book.price} ${book.stock}

转载于:https://www.cnblogs.com/mjsn/p/6150768.html

你可能感兴趣的文章
python-redis之数据类型二
查看>>
Java类加载机制
查看>>
数据库的最简单实现
查看>>
循环单链表实现
查看>>
Android设计模式实战---责任链模式
查看>>
剑指Offer_31_整数中1出现的次数(从1到n整数中1出现的次数)
查看>>
10月29日 迅雷会员vip账号分享 91freevip 晚间21:00更新
查看>>
【一题多解】Python 字符串逆序
查看>>
open ball、closed ball 与 open set、closed set(interior point,limit point)、dense set
查看>>
字典(dictionary)与映射(map)
查看>>
Python 编程规范 —— TODO 注释(结合 PyCharm)
查看>>
十万个为什么 —— 名词解释(体育)
查看>>
table的设置(w3c)
查看>>
冲刺一
查看>>
【练习】在一个字符串中找到第一个只出现一次的字符。如输入abaccdeff,则输出b...
查看>>
python解决上楼梯问题
查看>>
变参宏 __VA_ARGS__
查看>>
sql 语句
查看>>
VUE一 基础语法
查看>>
[MySQl]MySQL忘记密码
查看>>