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

基于WebGIS的物流信息系统的设计与实现

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

网学网为需要计算机论文的朋友们搜集整理了基于WebGIS的物流信息系统的设计与实现相关资料,希望对各位网友有所帮助!

论文字数:44230,页数:78

摘  要
 随着经济的发展和通信技术的提高,物流作为一种先进的组织方式和管理技术,被广泛认为是企业在降低消耗和提高劳动生产率以外的重要的利润源泉,在国民经济和社会发展中发挥着重要作用。本文在物流企业的正常运营中,基于GIS的信息系统已经成为不可或缺的管理工具。在对WebGIS技术和物流企业需求进行分析的基础上,结合不同企业的业务流程的具体特点,设计了一套扩展性较强的基于WebGIS的物流信息系统。
 系统的主要功能是将企业管理人员与运输车辆之间通过服务器连接起来,实现物流系统的监控和管理。系统采用B/S架构,服务器端通过网络与车辆终端通信,向车辆发送控制信息并获取车辆的当前状态。同时它还和Web客户端进行交互,向客户端提供地图服务,并执行Web客户端的请求。Web客户端采用Ajax技术与服务器端进行通信,通过动态地图监控车辆。它还实现了发送货物、编辑线路、发送消息等功能。考虑到可扩展性,系统重点实现了服务器端进行消息中转的消息队列,建立了Web客户端到车辆终端之间的消息通路,并可以随时更新消息队列中消息处理方式。本系统实现了物流系统的主要功能,极大提高了企业的管理水平。
 本文首先进行了系统的需求获取和业务分析。然后,采用分层的方法对系统进行设计,叙述了消息队列框架的详细设计与实现,并叙述了服务器端和客户端功能模块的设计和实现。并通过对系统的测试,对其功能和性能进行评估。最后,进行了总结,介绍了系统的特点和不足之处,指出了下一步的工作方向。
关键词:物流;WebGIS;消息队列
Design and Implementation of WebGIS-Based Logistics Information System
Abstract
With development of economy and improvement of communication technology, as an advanced mode of organization and management skill, logistics is widely considered to be the major source of profits in the enterprise besides reducing consumption and raising labor productivity. It plays an important role in the national economy and social development. The GIS-based information system has become an indispensable management tool in the regular business of logistics enterprise. Based on the analysis of the WebGIS technology and requirements of logistics enterprise, a WebGIS-based logistics information system with high expansibility is designed, according to specific business processes of various logistics enterprises.
 The major function of the system is to make manager communicated with vehicles via the server, and to realize monitoring and management of logistics system. The B/S architecture is adopted in the system. The server communicates with vehicles through network, sending them control data and receiving status data from them. At the same time, server interacts with Web clients, providing web map service and executing client requests. Web client communicates with server with Ajax technology, monitoring vehicles by watching dynamic maps. It also implements functions such as sending cargo, editing route, sending message, etc. Aiming at high expansibility of the system, message queue kept in server is seriously implemented. It means that a message channel between the Web client and vehicles is established, and the handling methods of the messages in message queue can be updated at any time. The system meets primary requirements and enhances management quality of customer.
 Firstly, in this thesis the requirement elicitation and the business analysis are completed.  Then system is designed into multi-layer architecture. The particular design and implementation of message queue framework are described. Design and implementation of the functional modules of server and client are presented. Function and capability of the system are evaluated through test.  At last, system traits and deficiencies are summarized, and next tasks are pointed out.
Keywords:Logistics; WebGIS; Message Queue


目  录
毕业设计(论文)任务书 I
摘  要 II
Abstract III
第1章 引  言 1
1.1 课题研究的背景和来源 1
1.2 课题研究成果应用的实际意义 2
1.3 本文的内容及主要工作 3
第2章 相关技术简介 5
2.1 GIS 技术 5
2.2 WebGIS 技术 5
2.2.1 WebGIS介绍 5
2.2.2 WebGIS协议介绍 7
2.2.3 WebGIS的开源平台 9
2.3 Ajax 架构 11
2.4 Spring 架构 11
2.5 本章小结 12
第3章 需求分析 13
3.1 系统实现目标 13
3.2 系统运行环境 13
3.3 系统的开发环境 14
3.4 功能性需求描述 14
3.4.1 发送货物 15
3.4.2 查询货物状态 16
3.4.3 提货 16
3.4.4 查询系统信息 16
3.4.5 配置车辆线路 16
3.4.6 实时显示系统信息 17
3.4.7 传递消息 17
3.4.8 发送实时状态信息 17
3.4.9 车辆完成运输段 18
3.4.10 操作货物 18
3.4.11 补充需求 18
3.5 非功能性需求描述 19
3.6 系统术语表 19
3.7 本章小结 20
第4章 系统设计 21
4.1 系统设计原则 21
4.2 系统总体设计 21
4.3 数据访问层设计 22
4.4 服务层设计 23
4.5 Web服务层设计 25
4.6 消息处理部分设计 26
4.6.1 消息队列设计 27
4.6.2 消息处理具体功能设计 28
4.6.3 Socket控制层详细设计 29
4.7 系统业务功能设计 31
4.7.1 货物发送功能设计 31
4.7.2 线路编辑功能设计 33
4.7.3 货物运输功能设计 34
4.7.4 权限操作功能设计 35
4.8 数据库设计 37
4.8.1 发货操作模块的表设计 37
4.8.2 线路编辑模块的表设计 38
4.8.3 货物运输模块的表设计 38
4.8.4 权限控制模块的表设计 41
4.8.5 消息处理模块的表设计 41
4.9 本章小结 42
第5章 系统实现 43
5.1 地图数据传输与显示 43
5.2 客户端设计与实现 46
5.2.1 java script语言面向对象编程 46
5.2.2 客户端请求协议和请求流程实现 48
5.2.3 客户端框架实现 49
5.3 系统安全控制实现 52
5.4 货物处理模块的实现 53
5.5 消息处理模块的实现 56
5.6 本章小结 58
第6章 系统测试 59
6.1 单元测试 59
6.2 集成测试 60
6.3 系统测试 61
6.4 本章小结 63
第7章 结  论 65
7.1 本文工作总结 65
7.2 进一步展望 65
参考文献 67
致    谢 69

基于WebGIS的物流信息系统的设计与实现......
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师