博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
Linux运维:安装CentOS7图解
查看>>
CSS隐藏页面元素的方法
查看>>
B. Mike and Feet Codeforces Round #305 (Div. 1) (并查集)
查看>>
学习Python遇到的那些坑
查看>>
目录大纲
查看>>
PAT 甲级 1104 sum of Number Segments
查看>>
【BZOJ4827】【HNOI2017】礼物
查看>>
awk运用
查看>>
python socket 编程之三:长连接、短连接以及心跳
查看>>
BootStrap的入门和响应式的使用
查看>>
Spring boot Mybatis
查看>>
【zookeeper】ACL super 超级管理员
查看>>
On Pi
查看>>
定位--position属性
查看>>
学习Android过程中一些小知识点的积累
查看>>
关于lis的方案数
查看>>
线段树的高级操作
查看>>
单例模式
查看>>
网易新闻页面信息抓取 -- htmlagilitypack搭配scrapysharp
查看>>
Visual Studio 2012 & MyEclipse2015 快捷键对比
查看>>