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

你可能感兴趣的文章
关于equalizer的算法的困惑。
查看>>
re模块
查看>>
(一) Linux系统使用 RPM 安装Mysql
查看>>
LintCode 614. 二叉树的最长连续子序列 II
查看>>
nyoj314-斐波那契数列四吧
查看>>
股票交易日
查看>>
第6届山东省ACM省赛总结
查看>>
noip2010引水入城解题报告
查看>>
android开发:按钮事件
查看>>
C#数据库连接代码
查看>>
Mybatis的@Options注解
查看>>
Ubuntu12.04 下安装Chrome浏览器
查看>>
LeetCode:数据库技术【175-178】
查看>>
基于EasyUi的datagrid合并单元格JS写法
查看>>
修改input:file样式
查看>>
【linux日志】【日志分析】linux系统各日志文件的含义
查看>>
12.ARM伪指令操作
查看>>
linux相关命令及配置(三)
查看>>
Linux 命令-1
查看>>
算法学习(十三)
查看>>