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

你可能感兴趣的文章
省选专练之【HNOI2004】树的计数
查看>>
6.8 出口条件循环:do while
查看>>
Unity3D 之UGUI 滚动条
查看>>
with as 和update ,Delete,insert
查看>>
Mybatis generator 自动生成代码
查看>>
C#中的一些小知识
查看>>
前端开发面试题总结之——HTML
查看>>
HDOJ---1847 Good Luck in CET-4 Everybody![巴什博弈]
查看>>
CodeForces - 618F Double Knapsack
查看>>
input类型为password默认显示有值
查看>>
计算几何模版
查看>>
jQuery插件学习基础
查看>>
json的命名空间
查看>>
Jquery DOM操作
查看>>
面试题6,单例模式等等。24种设计模式。
查看>>
基于Python项目的Redis缓存消耗内存数据简单分析(附详细操作步骤)
查看>>
当session过期后自动跳转到登陆页而且会跳出iframe框架
查看>>
MongoDB3.X参数文件
查看>>
C语言中文件的读取和写入
查看>>
钽电容和电解电容的区别
查看>>