javaweb网上书店系统专业课程设计.doc
信息科学和工程学院课程设计任务书 题 目: 网上书店后台管理系统 姓 名: xxxxxxxxxxxxxxxxxxx 姓 名: xxxxxxxxxxxxxxxxxxx 姓 名: xxxxxxxxxxxxxxxxxxx 专业班级: 计算机科学和技术 课 程: Java Web程序设计 指导老师: 职称: 完成时间: 5 月- 6月6 月27日课程设计任务书及成绩评定课程设计任务和具体要求课程设计要求设计一个用Java Web开发基于B/S架构管理系统,页面最少6个以上,应能反应出学生综合利用Java Web知识和数据库知识完成一定设计任务能力,反应出学生理论联络实践动手能力。具体要求以下:(1)明确所要开发系统设计任务;(2)做好需求分析,合理选择设计方案;(3)页面静态部分可用Dreamweaver开发实现(4)动态页面部分可用JSP、Servlet、JavaBean等实现;(5)后台数据库可采取MySQL、Oracle、SQL Server等实现;(6)在编写程序过程中应注意相关文档编写;(7)认真撰写课程设计总结汇报。指导老师签字: _ 日期: 指导老师评语成绩:_ 指导老师签字: 日期: 课程设计所需软件、硬件等n 硬件环境: CPU,主频1GHz以上;内存512M以上; 硬盘30G以上;1024×768显示分辨率n 软件环境: Microsoft windows XP或以上版本 ; eclipse; JDK1.7; Tomcat7.0; MySQL课程设计进度计划起至日期工作内容备注.5.30-.6.20课程设计要求设计一个用Java Web开发基于B/S架构管理系统,页面最少6个以上,应能反应出学生综合利用Java Web知识和数据库知识完成一定设计任务能力,反应出学生理论联络实践动手能力。参考文件、资料索引序号文件、资料名称编著者出版单位1刘宇君.SQL server数据库应用设计案例汇编.北京:中国铁道出版社, .86-1322童爱红等.Delphi数据库编程.北京:清华大学出版社, .106-1583刘波.基于Delphi学生成绩管理系统J.四川大学学报,,(10):283目 录1系统介绍42数据库表结构描述及其关系43软件模块结构图44关键功效模块步骤图55 关键功效5.1注册登录 55.2 购物车 75.3 后台登录 9 5.4 用户管理 10 5.5图书管理 126心得体会14网上书店1系统介绍网上书店系统是电子商务一类关键应用领域,经过它能够进行在线商品交易。伴随互联网普及和电子商务发展和大家购物理念和购物方法改变,网上书店系统将有着巨大市场潜力。本文在研究电子商务,尤其是网上书店系统基础理论和关键技术基础上,对网上书店系统发展背景,多种实现 技术,和多种实现技术优缺点和网上书店系统安全策略进行了分析。2数据库表结构描述及其关系在mysql中创建一个名为“test”数据库。在数据库中建立一个名为“userdetail”表。表中有五个字段:username(用户名)、userpass(密码)、role(权限)、retime(注册时间)和logum(登录次数)。其中username为主键,userpass非空,role默认值为0(一般用户等级),logum默认值为0。在建一个名为“books”表。表中有六个字段:isbn(图书编码)、bookName(书名)、publisherId(出版社ID)、price(价格)、count(数量)、description(介绍)。其中isbn为主键。count默认为0。3软件模块结构图4关键功效模块步骤图5 关键功效5.1注册登录1.代码实现<HTML><HEAD><TITLE>网上购物系统</TITLE><meta http-equiv=Content-Type content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0"><script language="javascript">/* 函数名称:loginClick 功效:验证登录 输入参数:无 输出参数:无 */function loginClick() /登录用户信息判定var user = document.getElementById("username").value;var pass = document.getElementById("password").value;if (user = null | user = "") alert("请填写用户名");document.getElementById("username").focus(); else if (pass = null | pass = "") alert("请填写密码");document.getElementById("password").focus(); elsedocument.Regsiter.submit();function res() document.getElementById("username").value = ""document.getElementById("password").value = ""</script>2.实现界面5.2 购物车1.代码实现public class SeachBookServlet extends HttpServlet protected void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException doPost(request, response);protected void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException request.setCharacterEncoding("GBK");response.setContentType("text/html;charset=GBK");String bookname = request.getParameter("bookName");String pid = request.getParameter("publisher");ServletContext ctx = this.getServletContext();/ 经过ServletContext取得web.xml中设置初始化参数String server = ctx.getInitParameter("server");/ 获取服务器地址String dbname = ctx.getInitParameter("dbname");/ 获取数据库名String user = ctx.getInitParameter("user");/ 获取数据库用户名String pwd = ctx.getInitParameter("pwd");/ 获取数据库密码BookDao dao = new BookDao();List<Book> booklist = null;try dao.getConn(server, dbname, user, pwd);if (bookname != null && bookname.length() > 0&& (pid = null | pid.equals("") / 依据书名查找图书列表booklist = dao.getBookByName(bookname); else if (pid != null && pid.length() > 0&& (bookname = null | bookname.equals("") / 依据出版社ID查找图书列表booklist = dao.getBookByPublisher(Integer.parseInt(pid); else if (bookname != null && bookname.length() > 0 && pid != null&& pid.length() > 0) / 依据书名和出版社查找图书booklist = dao.getBookByNameAndPublish(bookname, Integer.parseInt(pid); else / 返回全部图书列表booklist = dao.getAllBook(); catch (Exception e) e.printStackTrace();if (booklist != null) request.setAttribute("bookList", booklist);request.getRequestDispatcher("booklist.jsp").forward(request, response);2.实现界面5.3 后台登录1.代码实现<% page language="java" contentType="text/html; charset=GBK"%><HTML><HEAD><TITLE>网上购物后台管理系统</TITLE><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0"><script language="javascript">/* 函数名称:loginClick 功效:验证登录 输入参数:无 输出参数:无 */function loginClick() /登录用户信息判定var user = document.getElementById("username").value;var pass = document.getElementById("password").value;if (user = null | user = "") alert("请填写用户名");document.getElementById("username").focus(); else if (pass = null | pass = "") alert("请填写密码");document.getElementById("password").focus(); elsedocument.Regsiter.submit();function res() document.getElementById("username").value = ""document.getElementById("password").value = ""</script><style type="text/css"><!-.login_td font-family: 宋体;font-size: 12px;color: #000066;.login_button padding: 2 4 0 4;font-size: 12px;height: 18;background: url(./images/button_bk.gif) border-width : 1px;cursor: hand;border: 1px solid #003c74;padding-left: 4px;padding-right: 4px;padding-top: 1px;padding-bottom: 1px;-></style>2.实现界面5.4 用户管理1.代码实现<div class="list_div" style="height: 87%"><table border="0" align="left" cellspacing="0" class="list_table"id="senfe" style='width: 99%'><thead><tr><th width="2%"><input type="checkbox" name="checkAll"onClick="onclick= ckbSelect(this.checked, 'userId')"></th><th width="5%"><span style="font-weight: 400">序号</span></th><th width="22%"><span style="font-weight: 400">用户名</span></th><th width="21%"><span style="font-weight: 400">密码</span></th><th width="15%"><span style="font-weight: 400">用户类别</span></th><th width="21%"><span style="font-weight: 400">注册时间</span></th><th width="14%"><span style="font-weight: 400">登陆次数</span></th></tr></thead><tbody><%if (request.getAttribute("userList") = null) ServletContext ctx = this.getServletContext();/ 经过ServletContext取得web.xml中设置初始化参数String server = ctx.getInitParameter("server");/ 获取服务器地址String dbname = ctx.getInitParameter("dbname");/ 获取数据库名String dbuser = ctx.getInitParameter("user");/ 获取数据库用户名String pwd = ctx.getInitParameter("pwd");/ 获取数据库密码UserDao dao = new UserDao();try dao.getConn(server, dbname, dbuser, pwd);/获取所用图书并保留到pageContext中List<User> list = dao.getAllUser();pageContext.setAttribute("userList", list); catch (ClassNotFoundException e) e.printStackTrace(); catch (Exception e) e.printStackTrace();%><c:forEach var="user" items="$userList" varStatus="status"><tr><td align="center" width="2%"><input type="checkbox"name="userId" value="$user.username "class="input_radio"></td><td align="center">$status.count </td><td>$user.username</td><td align="center">$user.userpass</td><td align="center">$(user.role = 0) ? "一般用户" : "管理员"</td>2.代码实现5.5图书管理<form method="POST" name="search" action="SeachBookAdminServlet"><table width="70%"><tr><td width="10%" class="item_td"> 图书名称:</td><td class="input_td" style="width: 20%"><input type="text"name="bookName" value="" style="width: 100%" class="input_input"size="30"></td><td style="width: 1%"> </td><td width="10%" class="item_td"> 出版社:</td><td width="15%" class="input_td"><select name="publisher"style="width: 100%" class="input_drop"><option value=""></option><option value="1">人民邮电出版社</option><option value="2">清华大学出版社</option><option value="3">电子工业出版社</option></select></td><td style="width: 1%"> </td><td width="29%"><button onClick="select()" id="btnSearch" name="btnSearch"style="width: 15%">查询</button></td></tr></table></form><table border="0" width="100%" align="center"><tr style="height: 1px" class=""><td class="title_td">图书列表 </td></tr></table><divstyle="position: absolute; left: 0px; bottom: 1px; z-index: 1000;"id="excel"><table style="width: 40%"><tr><td style="cursor: hand;"><button style="width: 30%" onClick="addIt()">新增图书</button> <button style="width: 20%" onClick="deleteIt()">删除</button> <button style="width: 40%" onClick="editIt()">修改图书信息</button>2.代码实现6 心得体会网上书店系统是电子商务一类关键应用领域,经过它能够进行在线商品交易。伴随互联网普及和电子商务发展和大家购物理念和购物方法改变,网上书店系统将有着巨大市场潜力。本文在研究电子商务,尤其是网上书店系统基础理论和关键技术基础上,对网上书店系统发展背景,多种实现 技术,和多种实现技术优缺点和网上书店系统安全策略进行了分析。 经过这次对发型设计网站设计,我在其中收获了很多,感慨也很深。我认为这次确实是很有意义一次检测,原来自我感觉良好,结果实战时还是存在很多问题,平时学起来认为很轻松就认为掌握了所学知识,但现在全部忘记很多细节是怎么样了,所以开始着手时有些障碍,所以我下定决心把以前试验内容全部温习一遍,碰到不懂就立即查资料,比如翻阅资料书,baidu,而且请教同学,一起讨论,相互学习,最终完成了这次课程设计。由此我深刻地认识到:只要自己想学只要自己有那份执着和毅力,虚心请教,勤于查阅相关资料就一定会有收获,真当今没有什么知识是用不着,在哪,哪里全部是知识,只要自己持有高度学习热忱,就一定会学有所得。这个婚纱网站包含范围有点窄,且不含有立即更新信息作用,在后面学习中我们期望能够和数据库连接,充足做到信息立即性和可靠性。