小区车辆管理系统的设计与实现
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
四川大学锦城学院本科毕业论文
小区车辆管理系统的设计与实现
小区车辆管理系统的设计与实现
专业:
学生:
指百度文库老师:
摘要
小区车辆管理系统是一个通过人机交互系统,将小区车辆、驾驶员和出车情 况进行存储,并同时对小区车辆进行全面管理的系统。它主要实现了车辆信息管 理、驾驶员信息管理、出车信息管理等功能。它的目的是加强对小区车辆的管理, 使其智能化,意义是降低人力成本。
小区车辆管理系统基于 B/S 结构和 J2EE 平台,采用两层架构构建。表示层: 负责完成用户体验,主要实现用户数据的采集和处理结果数据到客户端的渲染; 选用基于 MVC 模式构建的表示层开源框架 Struts2 构建。视图采用 JSP 实现,配 合 html、CSS 和 Javascript 以建立良好的用户体验环境。持久层负责与数据库 的交互,主要实现实体数据的增、删、改、查等操作,采用开源的持久层框架 Hibernate 实现。系统同时采用 SQLServer 数据库实现数据存储。
2 系统整体设计.............................................................................................................4 2.1 系统需求分析..................................................................................................... 4 2.2 系统整体架构设计............................................................................................. 5 2.3 系统功能设计..................................................................................................... 7
3 系统核心功能实现.....................................................................................................8 3.1 系统界面设计..................................................................................................... 8 3.2 中文乱码处理................................................................................................... 10 3.3 驾驶员信息管理............................................................................................... 12 3.4 车辆信息管理................................................................................................... 15 3.5 出车信息管理................................................................................................... 16
Key words: vehicle management B/S J2EE Struts2
II
四川大学锦城学院本科毕业论文
目录
小区车辆管理系统的设计与实现
1 导论.............................................................................................................................1 1.1 系统背景............................................................................................................. 1 1.2 技术背景............................................................................................................. 1 1.3 研究内容............................................................................................................. 3
6 总结...........................................................................................................................27 参考文献......................................................................................................................28 致谢..............................................................................................................................29
4 数据库的分析与设计...............................................................................................19 4.1 数据库的概念和特点....................................................................................... 19 4.2 数据库的逻辑结构设计................................................................................... 22 4.3 表结构............................................................................................................... 22 4.4 数据库的连接原理........................................................................................... 23
5 系统测试...................................................................................................................25 5.1 系统测试目的与意义....................................................................................... 25 5.2 测试结果........................................................................................................... 25
Thesis completed vehicle management, design and implementation of the bus driver management and information management functions, briefly describes the system background, technical background, needs analysis, the overall system architecture design, and implementation-related functions, and finally to database design was introduced.
本文主要完成和车辆管理,驾驶员管理的设计实现,汽车信息管理功能,简 要介绍了系统的背景,技术背景,需求分析,系统架构设计,及相关功能的实现 方法,最后对数据库的设计进行了介绍。
关键词: 车辆管理 B/S J2EE Struts2
I
四川大学锦城学院本科毕业论文
小区车辆管理系统的设计与实现
The design and implementation of district vehicle management system
District vehicle management system based on B / S structure and the J2EE platform to build a two-tier architecture. Presentation Layer: is responsible for completing the user experience, the main results of the data collection and processing of user data to render the client; the use of open-source framework for building the presentation layer-based build Struts2 MVC pattern. View using JSP to achieve, with html, CSS and Javascript to create a good user experience environment. Persistence layer is responsible for interacting with the database, the main achievement of entity data add, delete, change, and other operations, the use of open source persistence framework Hibernate implementation. System while using SQLServer database for data storage.
Major: Software Engineering
Student: Li Yuqing Supervisor: Zhao Chun
Abstract
District vehicle management system is an interactive system through the cell vehicle, the driver and the bus case for storage, and also for the overall management of the district vehicle systems. It is the main achievement of the vehicle information management, driver information management, information management, and other functions of the bus. Its purpose is to strengthen the management of district vehicles to intelligent, meaning lower labor costs.
小区车辆管理系统的设计与实现
小区车辆管理系统的设计与实现
专业:
学生:
指百度文库老师:
摘要
小区车辆管理系统是一个通过人机交互系统,将小区车辆、驾驶员和出车情 况进行存储,并同时对小区车辆进行全面管理的系统。它主要实现了车辆信息管 理、驾驶员信息管理、出车信息管理等功能。它的目的是加强对小区车辆的管理, 使其智能化,意义是降低人力成本。
小区车辆管理系统基于 B/S 结构和 J2EE 平台,采用两层架构构建。表示层: 负责完成用户体验,主要实现用户数据的采集和处理结果数据到客户端的渲染; 选用基于 MVC 模式构建的表示层开源框架 Struts2 构建。视图采用 JSP 实现,配 合 html、CSS 和 Javascript 以建立良好的用户体验环境。持久层负责与数据库 的交互,主要实现实体数据的增、删、改、查等操作,采用开源的持久层框架 Hibernate 实现。系统同时采用 SQLServer 数据库实现数据存储。
2 系统整体设计.............................................................................................................4 2.1 系统需求分析..................................................................................................... 4 2.2 系统整体架构设计............................................................................................. 5 2.3 系统功能设计..................................................................................................... 7
3 系统核心功能实现.....................................................................................................8 3.1 系统界面设计..................................................................................................... 8 3.2 中文乱码处理................................................................................................... 10 3.3 驾驶员信息管理............................................................................................... 12 3.4 车辆信息管理................................................................................................... 15 3.5 出车信息管理................................................................................................... 16
Key words: vehicle management B/S J2EE Struts2
II
四川大学锦城学院本科毕业论文
目录
小区车辆管理系统的设计与实现
1 导论.............................................................................................................................1 1.1 系统背景............................................................................................................. 1 1.2 技术背景............................................................................................................. 1 1.3 研究内容............................................................................................................. 3
6 总结...........................................................................................................................27 参考文献......................................................................................................................28 致谢..............................................................................................................................29
4 数据库的分析与设计...............................................................................................19 4.1 数据库的概念和特点....................................................................................... 19 4.2 数据库的逻辑结构设计................................................................................... 22 4.3 表结构............................................................................................................... 22 4.4 数据库的连接原理........................................................................................... 23
5 系统测试...................................................................................................................25 5.1 系统测试目的与意义....................................................................................... 25 5.2 测试结果........................................................................................................... 25
Thesis completed vehicle management, design and implementation of the bus driver management and information management functions, briefly describes the system background, technical background, needs analysis, the overall system architecture design, and implementation-related functions, and finally to database design was introduced.
本文主要完成和车辆管理,驾驶员管理的设计实现,汽车信息管理功能,简 要介绍了系统的背景,技术背景,需求分析,系统架构设计,及相关功能的实现 方法,最后对数据库的设计进行了介绍。
关键词: 车辆管理 B/S J2EE Struts2
I
四川大学锦城学院本科毕业论文
小区车辆管理系统的设计与实现
The design and implementation of district vehicle management system
District vehicle management system based on B / S structure and the J2EE platform to build a two-tier architecture. Presentation Layer: is responsible for completing the user experience, the main results of the data collection and processing of user data to render the client; the use of open-source framework for building the presentation layer-based build Struts2 MVC pattern. View using JSP to achieve, with html, CSS and Javascript to create a good user experience environment. Persistence layer is responsible for interacting with the database, the main achievement of entity data add, delete, change, and other operations, the use of open source persistence framework Hibernate implementation. System while using SQLServer database for data storage.
Major: Software Engineering
Student: Li Yuqing Supervisor: Zhao Chun
Abstract
District vehicle management system is an interactive system through the cell vehicle, the driver and the bus case for storage, and also for the overall management of the district vehicle systems. It is the main achievement of the vehicle information management, driver information management, information management, and other functions of the bus. Its purpose is to strengthen the management of district vehicles to intelligent, meaning lower labor costs.