网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > 其他类别 > 正文

B2C网上商城设计与实现

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 16/02/12

以下是网学网为您推荐的其他类别-B2C网上商城设计与实现,希望本篇文章对您学习有所帮助。

论文字数:13773,页数:55 

摘要

 随着电子商务的迅猛发展, 网上购物作为一种便捷的消费途径,走进了人们的生活。 网上购物实现的是一种以网页为交流媒介, 在网页切换时,带回一些重要的客户信息或商品信息, 实现了对客户信息的了解和对必要信息的记录。
 该网站能够实现企业以自有域名在互联网开设的集销售、服务、资讯一体化的电子商务平台。企业依托此网站开展综合性的网络营销活动, 推广网站,树立品牌。
 产品展示:全天后的产品展示平台,文字、图片、多媒体、在线评价等展示手段。
 销售服务:提供自助式的订单填写向导,历史订单追溯。增加了销售服务水平,同时降低了销售服务的人力成本。
 售后服务:保留历史账单有助于加强顾客的消费体验。在网站上提供本公司相关产品的有关知识,选购指南等。使用说明等帮助消费者使用本企业的产品。 本人的毕业设计主要阐述如何实现一个在线商城系统,基于B/S结构。 参考了现在比较流行的商城,紧扣一个基本的商城需要具备的功能,并从客户角度考虑,来编写代码及界面,达到从服务客户的角度来设计系统,使其更加的人性化。
 剖析一个具备可扩展型的系统,代码的编写具有明确的功能区分。因此采取目前最受推崇的MVC模式,分层式编写代码。 并采用ORM模型,弱化表的概念,使编程更加的面向对象。
 
 关键词:B/S结构,MVC模式,ORM模型

ABSTRACT

 With the rapid development of electronic commerce,  shopping on-line as a convenient way of consumption has entered people''s daily life. shopping on-line was materialized by the exchange of websites. When one switches one website to another website, he brings back some important information of customers or commodities. This process can learn the customers'' information and record the significant information.
 This website can establish a E-commerce platform under the domain name owned by the company itself to launch marketing, service and information.  The company will popularize the website and set up commercial brand through general Internet marketing activities based on the website.
 Display of the commodity: the website will display the commodities by using words, pictures, multimedias, on-line evaluation etc.
 Marketing service: the website provides guidelines on how to fill out the self-helped orders and how to find the former orders. This service improves the level and quality of marketing service and meanwhile induces the cost of manpower.
 After-sale service: the reserving of former orders will enrich customers'' experience of shopping on-line. Shopping guides and instructions listed on the website will tell customers how to use the commodities of the company.
 This paper mainly discusses how to build up a on-line shopping system based on B/S construction. A software engineer should write codes and interfaces from customers'' angles by refering to the popular on-line shopping towns and sticking to the functions a ordinary on-line shopping town has. Thus, the system can service customers well and the designing of the system can be more humanized.
 Analysing a scalable system requires a specific distinction of code writing.If we adopt the most widely admired MVC model nowadays to write codes layer by layer , we adopt ORM model, the programming will be more object-oriented.
 
 Key words: B/S construction, MVC model ,ORM model
目录

摘要 I
ABSTRACT II
第1章 引言 1
1.1 背景 1
1.2 研究内容 1
第2章 技术提要 4
2.1 MVC模式和Struts 4
2.2 Hibernate持久化 5
2.3 Spring管理 6
第3章 需求分析 7
3.1 系统需求说明 7
3.2 系统环境配置 8
3.3 系统可行性分析 9
3.4 数据库设计 9
3.4.1 用户信息表(member) 9
3.4.2 地址簿表(addresslist) 9
3.4.3 订单表(order) 10
3.4.4 订单项表(order_list) 10
3.4.5 父目录表(father_list) 11
3.4.6 子目录表(child_list) 11
3.4.7 商品信息表(goods) 11
3.4.8 商品评论表(comment) 12
3.4.9 收藏夹表(bookmark) 12
3.4.10 管理员表(administrator) 12
3.4.11 会员级别与积分、折扣的关系表(member_integral) 13
3.4.12 购物车表(cart) 13
第4章 系统设计 14
4.1 鲁棒性分析 14
4.2 前台部分序列图 15
4.2.1 用户注册序列图 15
4.2.2 用户登录序列图 16
4.2.3 查询商品信息序列图 17
4.3 后台部分序列图 18
4.3.1 会员级别设置 18
4.3.2 查询会员级别与积分、折扣的关系表 19
4.3.3 删除会员 20
4.4 部分用例实现 20
4.4.1 会员登录用例 20
4.4.2 地址簿编辑用例 21
4.4.3 商品搜索用例 21
4.4.4 从收藏夹中删除商品 21
第5章 电子商城实现 23
5.1 顾客/会员 23
5.1.1 顾客-会员注册 23
5.1.2 会员-会员登录 24
5.1.3 个人信息维护 24
5.1.4 地址簿编辑 25
5.1.5 会员历史交易查询 28
5.1.6 会员密码找回 29
5.1.7 会员积分查询 29
5.2 商品展示 30
5.2.1 商品分类浏览 30
5.2.2 商品搜索 31
5.2.3 商品评论 32
5.3 购买流程 32
5.3.1 购物车管理 32
5.3.2 添加购物车 33
5.3.3 修改商品数量 34
5.3.4 删除商品 34
5.3.5 加入收藏夹 34
5.4 结账 35
5.5 收藏夹管理 35
5.6 商品目录管理 37
5.6.1 商品管理 38
5.6.2 订单管理 39
5.7 销售量统计 40
5.8 会员管理 41
第6章 结束语 43
致谢 45
参考文献 46

B2C网上商城设计与实现......
  • 上一篇资讯: [其他类别]
  • 版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号