航空公司国内机票售票系统
摘要:此航空售票系统的设计是基于C/S结构,C/S结构的优点是能充分发挥客户端PC的处理能力,很多工作可以在客户端处理后再提交给服务器。对应的优点就是客户端响应速度快。
此系统是利用了hibernate持久化框架、使用JAVA编程技术在Eclipse集成开发环境下开发的。Java语言是一个支持网络计算的面向对象程序设计语言。Java语言吸收了Smalltalk语言和C++语言的优点,并增加了其它特性,如支持并发程序设计、网络通信、和多媒体数据控制等。
该系统实现了航班管理、订票管理、营业网点管理以及业务统计等功能。系统在客户端内能够完成营业员登录,查询航班,出票等功能,根据不同的客户需求,选择相应的操作。在服务器端,不同的管理员进行了不同的权限设置,航空公司内部的超级管理员能够完成添加或删除航班,添加或删除营业网点等所有功能,一般的管理员可进行相应的查询等操作。系统可以进行查询出票记录,业务统计等操作。
关键词: JAVA Hibernate 售票系统
中图分类号:TP311
Airline Company Ticket Sales System In Domestic
Abstract: This air ticketing system is designed based on C / S structure. C / S structure can give full using the advantage of the client PC processing ability. A lot of work can be dealt with in the client. The corresponding merits in the client is fast to response.
The system is developed by the hibernate durable framework, and JAVA programming technology in the Eclipse integrated development environment. Java is a language of support network computing object-oriented programming. Java language has absorbed the advantages from Smalltalk language and C++ language and increased other features such as support for concurrent programming, network communications, and multimedia data control.
The system implement the flight management, booking management, branch management , Statistics and other functions. System in the client can able to complete the Salesperson logging, searching flights, ordering and other functions. According to different customer needs selected the appropriate action. In the server side, a different administrator of the authority make different settings. The super administrator within the airline company can able to add or delete flights, add or remove branch and others function. The general manager can make the appropriate operate such as search, and so on. The system can be inquire about ordering note, business statistics and other operations.
Key words:JAVA Hibernate Sales System
Classification:TP311
目 次
摘要 Ⅰ
目次 Ⅲ
1 引言
1.1 研究的背景及意义
1.2 国内外研究现状
1.3 课题研究内容
2 技术选择
2.1 C/S结构
2.2 Java技术
2.3 Eclipse集成开发环境
2.4 Hibernate框架技术
3 需求分析
3.1 系统功能模块
3.2 客户端模块
3.3 服务器模块
3.4 系统运行流程
4 系统设计
4.1 业务模型
4.2 数据库设计
4.2.1 飞机机型表(PLANEMODELTABLE)
4.2.2 航班计划表(FLIGHTSCHEDULARTABLE)
4.2.3 航班表(FLIGHTTABLE)
4.2.4 营业网点表(AGENTTABLE)
4.2.5 定单项目表(ORDERITEMTABLE)
4.2.6 定单表(ORDERTABLE)
4.2.7 管理员表(AGENTTABLE)
4.3 DAO 接口设计
4.3.1 FlightDAO
4.3.2 BranchDAO
4.3.3 TicketOrderDAO
5 关健代码分析
5.1 流程代码分析
5.2 用表格显示表单
5.3 Hibernate映射关系
6 总结