论文格式
电气工程 会计论文 金融论文 国际贸易 财务管理 人力资源 轻化工程 德语论文 工程管理 文化产业管理 信息计算科学 电气自动化 历史论文
机械设计 电子通信 英语论文 物流论文 电子商务 法律论文 工商管理 旅游管理 市场营销 电视制片管理 材料科学工程 汉语言文学 免费获取
制药工程 生物工程 包装工程 模具设计 测控专业 工业工程 教育管理 行政管理 应用物理 电子信息工程 服装设计工程 教育技术学 论文降重
通信工程 电子机电 印刷工程 土木工程 交通工程 食品科学 艺术设计 新闻专业 信息管理 给水排水工程 化学工程工艺 推广赚积分 付款方式
  • 首页 |
  • 毕业论文 |
  • 论文格式 |
  • 个人简历 |
  • 工作总结 |
  • 入党申请书 |
  • 求职信 |
  • 入团申请书 |
  • 工作计划 |
  • 免费论文 |
  • 合作期刊 |
  • 论文同学网 |
搜索 高级搜索

当前位置:论文格式网 -> 毕业论文 -> 计算机论文
毕业论文标题:

网上书店设计与实现

 本文ID:LWGSW14540 价格:收费积分/100
扫一扫 扫一扫
本站会员可自行下载:下载地址 网上书店设计与实现 (收费:1000 积分)  

论文字数:16768,页数:56

摘要
 
 随着信息技术的不断发展和Internet在世界范围内的迅速普及,电子商务已成为新经济的代名词。围绕Internet开展的全新电子商务已逐渐被广大商家企业及消费者所认同。其中网上购物是电子商务的一个较典型的应用,消费者可通过浏览器浏览由企业商家在站点上发布的商品信息,用电子账单的方式向银行支付款项,一切操作都在网上完成,整个过程方便而快捷。目前,网上商店正逐渐被人们所接受。网络购物车是网上商店的核心部件,是整个电子商务网站面向客户的最核心的部分,它记录了顾客在每次购物后所选购的商品的信息,最后结算和发送订单都要依赖于购物车中记录的商品信息。网络购物车是顾客在网上虚拟商场中购物时所必须携带的购物工具,顾客在浏览商品目录的时候,既可以把他喜欢的商品一个个放到购物车里,也可以从购物车中取出所选商品或者改变所选商品的数量,直到最后付款。基于web的电子商务系统采用的是三层B/S模式,代替了传统的两层C/S模式,它由一个web浏览器作为用户界面,一个数据库服务器用作信息存储和一个连接两者的web服务器组成。顾客上网购物的主要原因是商品售价便宜、查看商品信息容易及可节省时间,所以有必要对网上商店的核心部分——网络购物车进行其设计与实现方法方面的分析研究。本文正是基于这样的背景,通过使用java语言结合struts2和hibernate框架来完成对购物车的设计和实现过程。

关键词:电子商务;购物车;B/S模式;java;struts2;hibernate

ABSTRACT

 With the continuous development of information technology and the Internet in worldwide rapidly in popularity, e-commerce has become the pronoun of new economy. The new round of Internet e-commerce has gradually by the general merchants and consumers. One online shopping is a typical e-commerce applications, consumer can through the browser on the site by the enterprise business by using electronic bill business information, the way to the bank payments, all the operation on the Internet, the whole process convenient and quick. At present, online shop is gradually accepted by people. Internet shopping cart is the core component of online shop, is the e-commerce sites for the core part of the customer, customer shopping in each choose goods after the final settlement and send information and order are dependent on the shopping cart records in commodity information. Internet shopping cart is customer online shopping mall in virtual when shopping tools, must carry on the customers browse catalogues, can put him like one of the goods on the shopping cart, also can be removed from the cart selected merchandise or change the selected the quantity of a commodity, until the final payment. The electronic commerce system based on web use is three layers of B/S model, instead of two layers of traditional C/S mode, it consists of a web browser as the user interface, a database server for information storage and a connection between the web server. Customer online shopping is the main reason of the commodity price cheap, check goods can save time and information easily, so it is necessary to online shop, the core of the cart network design and implementation method of analysis. This is based on the background, through the use of Java language struts2 and hibernate to frame design and realization of the cart.
 
Keywords:E-commerce; Shopping cart; B/S model; Java; Struts2; Hibernate

目录

摘要 I
ABSTRACT II
第1章 引言 1
1.1 背景 1
1.2 研究内容 1
第2章 JAVA的网络编程 3
2.1 JAVA语言简介 3
2.2 JAVA语言在网络上的应用 3
2.3 JSP的基础-servlet技术 3
2.4 Hibernate概述 4
2.4.1 Hibernate简介 4
2.4.2 HibernateAPI简介 4
2.4.3 Hibernate优缺点 5
2.5 Struts2概述 6
2.5.1 Struts2简介 6
2.5.2 Struts2与Struts1的不同 6
2.5.3 Struts2的工作流程 9
2.6 MySql概述 9
2.6.1 MySql简介 9
2.6.2 MySql的特性 10
2.6.3 MySql的应用 11
第3章 网上书店介绍 12
3.1 网上书店概述 12
3.2 网上书店定义 12
3.3 网上书店的优势 12
3.4 网上书店的现状 12
3.5 网上书店的发展趋势与前景预测 13
第4章 网上书店详细设计 15
4.1 需求分析 15
4.2 总体设计 15
4.3 系统功能模块划分 16
4.4 数据库设计与实现 17
4.4.1 数据库需求分析 17
4.4.2 创建数据表 17
4.4.3 E-R图 20
4.5 网上书店流程 21
第5章 功能模块设计 22
5.1 管理员功能模块 22
5.1.1 管理员注册功能 22
5.1.2 管理员登陆功能 24
5.1.3 添加新书功能 25
5.2 顾客功能模块 30
5.2.1 会员注册功能 30
5.2.2 会员登录功能 33
5.2.3 查询图书功能 35
5.2.4 购物车管理功能 37
5.2.5 订单提交功能 45
第6章 结束语 49
致谢 50
参考文献 51


相关论文
本论文在计算机论文栏目,由论文格式网整理,转载请注明来源www.lwgsw.com,更多论文,请点论文格式范文查看
上一篇:基于Java框架的医疗设备管理系统.. 下一篇:大学生就业信息网站的设计与实现
Tags:网上书店 设计 实现 【收藏】 【返回顶部】
最新文章
热门文章
计算机论文
推荐文章

本站部分文章来自网络,如发现侵犯了您的权益,请联系指出,本站及时确认删除 E-mail:349991040@qq.com

论文格式网(www.lwgsw.com--论文格式网拼音首字母组合)提供计算机论文毕业论文格式,论文格式范文,毕业论文范文

Copyright@ 2010-2018 LWGSW.com 论文格式网 版权所有 蜀ICP备09018832号