登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 电子信息类 > 通信工程 > 正文

基于JSP的超市管理系统的设计与实现毕业论文

 2021-06-25 01:06  

摘 要

当前社会正走向信息化社会,为了保持企业的竞争性,各行各业都开始与计算机技术融合,拥抱信息化,超市作为与普通民众密切相关的行业也不例外。优秀的超市管理系统可以使商品的采购、销售、人员管理等核心管理环节高效的完成信息处理及流转,从而为企业创造高收益打下坚实的基础。

简单直接的人工式管理是不能承载起现有超市经营中的大数据的,而且人力资源投入相当大,效率低下。超市由超市管理系统完成采购、销售、库存、员工管理等日常各项业务,同时通过后台对数据的收集与统计,反映超市营销情况,为制定包含采购清单调整,员工业绩考核等决策提供有效支持。这些都将使得超市的运行效率和管理水平得到极大提高,帮助超市减少不必要的劳力成本,最终提高效益,在竞争中处于优势地位。

作者的主要研究工作如下:

1.结合实际指出了超市管理系统的发展意义,分析了超市管理系统的国内外研究现状。借鉴其先进的管理理念和系统,介绍和学习前端网页用到的JSP技术,后台数据库用到的MySQL,JDBC技术规范或标准,和B/S的开发架构模式,为实际开发奠定技术理论基础;

2.通过实际调研和信息查询,对超市管理系统进行了需求分析。将需求和软件功能相联系,进行了超市管理系统的方案设计。先设计出总体方案,然后总体功能进行模块化分解,因此超市管理分为了登录管理模块、商品管理模块、员工管理模块、销售管理模块、退货管理模块,分析用例图,掌握了模块内的操作以及模块间联系;

3.采用B/S架构,实现浏览器登录方式的超市管理系统。采用基于JSP的MVC模式进行本系统应用的开发,由servlets去处理事务逻辑,JavaBeans实现模型对象的生成。根据超市的业务流程,确定系统概念结构E-R图,设计出本超市管理系统的所有逻辑结构表,将超市管理系统中的信息进行有组织的存储到后台MySQL数据库;

4.进行了超市管理系统测试和运行。测试结果表明:本超市管理系统可以划分不同用户权限,对超市的业务进行系统操作管理,但系统界面不够美观,功能丰富性不够。

关键词:JSP;需求分析;功能模块;数据库

Abstract

Conform to the era of information technology, the trend of supermarket management to information and system is inevitable.In order to maintain the competitiveness of enterprises,All walks of life began to merge with the computer technology, embracing informlation,supermarket as the industry closely related to ordinary people is no exception.Excellent supermarket management system can make the purchase of goods, sales, personnel management which belong to key management parts information process and transfer efficiently, So as to create a solid foundation for enterprises to create high income.

Simple and direct manual management is unable to carry on the big data produced by supermarket business, and human resources investment is rather large,lack of efficient.Supermarket takes advantages of management system to complete the procurement, sales, inventory and staff management,at the same time collect and count data through the background, reflect the supermarket marketing situation,provide effective support to the decision making including purchasing inventory adjustment, employee performance appraisal and so on.All these will make the level of supermarket operation efficiency and management been greatly improved, help the supermarket reduce unnecessary labor costs, improve efficiency, becomes dominant position in the competition ultimately.

The author's main research work is as follows:

  1. The development significance of supermarket management system was pointed out based on reality,analysised the domestic and foreign research status of supermarket management system. Drawed on advanced management concept and system, introuduced and learned JSP used in front web page,MySQL as background database,JDBC, and B/S development framework model, lay the technical and theoretical foundation for the actual development.
  2. After the actual investigation and information inquiry,author did needs analysis about the supermarket management system.connected the demand and the software function,given the scheme design of the supermarket management system.First designed the overall program,and then modular decomposited overall function,therefore, the supermarket management was divided into management module, product management module, staff management module, sales management module, return goods module.Analysised use case diagram,familiar with the operation of the module and the connection between modules.
  3. Using the B/S architecture,supermarket management system through the browser logging was designed.MVC model based on the JSP model for the development of small web application,servlets dealed with transaction logic, JavaBeans achieved the generation of model objects,this way was helpful to the development and maintenance of supermarket management system.According to the supermarket business process, determined the system E-R diagram,designed all the logical structure of the supermarket management system,stored the information in the supermarket management system to the background database MySQL.
  4. Tested and ran the supermarket management system.The test result showed that:the supermarket management system can be divided into different user right,manage the supermarket business systematically,but the system interface is not beautiful enough, richness of function is not enough.

KeyWords: JSP;requirement analysis;function module;database

目 录

第1章 绪论 1

1.1 超市管理系统研究的背景及目的、意义 1

1.2 超市管理系统国内外研究现状 2

1.2.1 超市管理系统的国外研究现状 2

1.2.2 超市管理系统的国内研究现状 2

1.3 本文的主要研究内容及组织结构 3

1.3.1 主要研究内容 3

1.3.2 组织结构 3

第2章 超市管理系统的研究基础 5

2.1 JSP技术概述 5

2.2 MySQL数据库 6

2.2.1 数据库系统 6

2.2.2 JDBC开发数据库 7

2.2.3 应用模型 7

2.3 开发工具和服务器 8

2.4 本章小结 8

第3章 超市管理系统的需求分析 9

3.1可行性分析 9

3.1.1 技术可行性 9

3.1.2 经济可行性 9

3.1.3 操作可行性 9

3.2 功能需求分析 10

3.3 用例分析 11

3.4 数据流图分析 13

3.5 非功能性需求分析 14

3.6 本章小结 15

第4章 超市管理系统方案设计与实现 16

4.1 设计原则 16

4.2 总体方案设计 16

4.3 系统功能模块实现 19

4.4 数据库设计 21

4.4.1 数据库需求分析 21

4.4.2 数据库概念结构设计 21

4.4.3 数据库逻辑结构设计 22

4.5 本章小结 25

第5章 超市管理系统测试与运行 26

5.1 超市管理系统测试 26

5.2 超市管理系统运行及结果分析 27

5.2.1 系统登录 27

5.2.2 收银业务 29

5.2.3 商品管理 30

第6章 总结与展望 31

6.1 总结 31

6.2 展望 31

参考文献 32

致谢 33

第1章 绪论

1.1 超市管理系统研究的背景及目的、意义

现在社会伴随着科学技术的发展,已经来到了一个信息化时代。其中以计算机技术尤为突出,由此形成的信息化趋势对社会生活的方方面面都造成了长远而深刻的影响,并逐渐成为社会发展的一大潮流,由此IT产业的先进优势得以逐渐显现[1]。在时代信息化的背景下,为了保持企业的竞争性,各行各业都开始与计算机技术融合,拥抱信息化,超市作为与普通民众密切相关的行业也不例外。

超市是一项民生行业,我国的超市行业随着改革开放后经济的发展,在20世纪90年代初期初现模型,发展到现在已经成为我国零售业的重要组成部分,宏观上讲超市行业是对国民经济做出贡献,微观上讲就是极大的便利了普通民众的日常生活。由于超市原本初衷是集合商品,方便民众购买,而随着小康社会的发展,人们不再像以前那样只凭生活需求而去选择购买,再加上超市行业的激烈竞争,超市不能只是简单的扮演一次性卖场的角色,而是需要用心去响应用户的需求,在为用户提供物美价廉的商品的同时,还要提供优质,便捷的服务来打动用户,来吸引用户,在这当中超市管理系统占据了必不可缺。

超市规模的竞争已经是过去时,现在则是在技术,在管理,在人才等方面进行激烈角逐,超市管理系统是在各类超市企业经营管理中的中枢环节,它关乎着一个企业能不能取得好的收益,优秀的超市管理系统可以使商品的采购,销售,人员管理等核心管理环节高效的完成信息处理及流转,进而降低企业成本支出,提升效益。

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图