网站地图| 免费获取|
毕业论文网
  • 网站首页|
  • 论文范文|
  • 论文降重|
  • 职称论文发表|
  • 合作期刊|
  • 论文下载|
  • 计算机论文|
  • 外文翻译|
  • 免费论文|
  • 原创论文|
  • 论文开题报告
搜索

当前位置:毕业论文网 -> 论文下载 -> 资料论文下载 -> 基于BS架构的购物一条街网站设计与实现
计算机论文资料| ASP设计| Delphi| VB设计| JSP设计| ASP.NET设计| VB.NET| java设计| VC| pb| VS| dreamweaver| c#.net| vf| VC++| 计算机论文范文| 论文下载| 自动化论文

基于BS架构的购物一条街网站设计与实现

本文ID:LW19825 字数:18310,页数:49 价格:¥50.00 → 信用说明

以下为论文简介,扫一扫付款马上可获取全文,付款金额见标题右下角。付款后请把付款结果截图及本篇论文的网址或者论文ID发给客服,客服核实后,马上将论文发到您的邮箱或者在线传送给您。客服QQ:17304545 点击这里给我发消息   微信:17304545 扫一扫 扫一扫
本站会员可自行下载:下载地址 基于BS架构的购物一条街网站设计与实现 (收费:5000 积分)  如何获取积分?
基于BS架构的购物一条街网站设计与实现

^论文字数:18310,页数:49

摘要

 本购物一条街网站是基于JSP动态网页技术,运行在tomcat服务器上,采用B/S架构,并根据现有的网上购物系统的现状而设计开发的电子商务类网站。它不但可以扩大商家的规模和市场影响力,而且可以减少企业的经营成本,提高工作效率。
 本文首先介绍了网上购物类网站的现状及开发背景,然后论述了系统的设计目标,系统需求和总体设计方案,较详细的论述了系统的详细设计和实现。最后,本文对购物一条街进行了系统检测并提出了还需要改进的问题。
 本网站主要为会员提供了会员注册,购物车管理,商品浏览,下订单等功能,为管理员提供了商品管理,会员管理,订单管理等功能。在设计方面,本网站采用B/S三层结构,即MVC模式,使用JSP技术进行动态页面的设计,同时结合了HTML以及java script语言在页面上的应用。后台数据库管理选用的是当今流行的sql server数据库管理系统。

关键词:购物一条街网站,JSP,B/S架构,电子商务,sql server
ABSTRACT

 The shopping street website is based on a dynamic web page technology JSP, working on the tomcat server, adopting the B/S frame, and in accordance with the existing system, the status of online shopping and the design and development of e-commerce Website. It can not only expand the business scale and market influence, but also reduce operating costs and enhance efficiency.
 This paper first introduced the category of on-line shopping websites, as well as the development of the background of the status quo, and then discusses the system design objectives, system requirements and design program, a more detailed discussion of the detailed design of the system and the realization of. Finally, the paper on-line shopping site testing of the system and put forward the question of the need to improve.
 The main users of this Web site provides registered membership, shopping cart management, product browsing, submit the order and other functions, for administrator of commodity management, user management, order management and other functions. In terms of design, the use of this site B / S three-tier structure, namely, MVC model, the use of JSP technology for dynamic page design, while a combination of HTML and java script language in the application page. The database background uses the popular choice of the sql server 2005 database management system.
 
 Keywords: The Shopping Street Website, JSP, B/S framework, E-commerce
, sql server
目录

摘要 I
ABSTRACT II
第1章 引言 1
1.1 背景 1
 1.1.1网上购物的发展 1
 1.1.2购物网站开发技术的现状 1
1.2 购物网站的开发意义 2
1.3 研究内容和过程 3
1.4 本章小结 3
第2章 基于JSP技术的网站开发 4
2.1 MVC模式 4
 2.1.1 MVC模式介绍 4
 2.1.2 MVC的优势和特点分析 4
2.2 JDBC连接桥技术 5
 2.2.1 JDBC定义 5
 2.2.2 JDBC与ODBC和其他API比较 6
 2.2.3 JDBC对B/S和C/S模式 7
2.3 Servlet 7
2.4 开发环境 7
 2.4.1 MyEclips 7
 2.4.2 Dreamweaver 8
 2.4.2 SQl Server 8
2.5 本章小结 9
第3章 系统需求分析 10
3.1 网站功能需求分析 10
3.2 网站性能需求分析 10
3.3 网站设计的优势 11
3.4 网站设计的总体规则 11
3.5 本章小结 11
第4章 数据库设计 12
4.1 数据库分析 12
4.2 概念结构设计 13
4.3 逻辑结构设计 14
4.4 数据库安全性和完整性 18
 4.4.1 数据库的安全性 18
 4.4.2 数据完整性 18
4.5 本章小结 19
第5章 网站设计与实现 20
5.1 网站功能设计 20
 5.1.1 功能页面结构 20
 5.1.2 功能流程图 20
5.2 会员前台操作功能模块的实现 21
 5.2.1 数据库的连接 21
 5.2.2 会员登录操作模块的实现 22
 5.2.3 购物车模块的实现 26
 5.2.4 商品搜索模块的实现 30
 5.2.5 其他模块的实现 32
5.3 管理员后台管理功能模块的实现 33
 5.3.1 会员管理模块的实现 33
 5.3.2 商品管理模块的实现 36
 5.3.3 商品类别管理模块的实现 39
 5.3.4 订单管理模块的实现 40
5.4 本章小结 42
第6章 结束语 43
致谢 44
参考文献 45

基于BS架构的购物一条街网站设计与实现由毕业论文网(www.huoyuandh.com)会员上传。
原创论文资料流程 相关论文
上一篇:基于Java的智能网吧管理系统的设.. 下一篇:网上超市系统的设计与实现
推荐论文 本专业最新论文
Tags:基于 架构 购物 一条街 网站设计 实现 2011-05-22 09:20:31【返回顶部】
发表论文

联系方式 | 论文说明 | 网站地图 | 免费获取 | 钻石会员 | 硕士论文资料


毕业论文网提供论文范文,论文代发,原创论文资料

本站部分文章来自网友投稿上传,如发现侵犯了您的版权,请联系指出,本站及时确认并删除  E-mail: 17304545@qq.com

Copyright@ 2009-2020 毕业论文网 版权所有