一、项目介绍
汽车票网上预订系统网站是一个基于互联网的在线服务平台,专为乘客提供便捷、高效的汽车票预订服务。该系统通过集成先进的互联网技术,实现了车次信息查询、在线预订、订单管理、新闻信息发布以及在线留言等多项功能,极大地提升了乘客的购票体验和满意度。
该系统允许乘客随时随地通过互联网查询所需车次的车票信息,包括发车时间、到达时间、车型、票价等,并支持在线预订及多种支付方式,如支付宝、微信支付等,从而大大简化了购票流程,节省了乘客的时间和精力。此外,乘客还可以通过该系统管理自己的订单,包括查看订单状态、取消或改签订单等,以满足个性化的需求。
汽车票网上预订系统网站还具备新闻信息发布和在线留言功能,能够及时发布最新的交通信息、政策动态和服务公告,方便乘客了解相关信息。同时,乘客可以通过在线留言向系统或运输公司提交咨询、建议或投诉等信息,实现与运输公司的互动交流,进一步提升了服务质量。
该系统采用先进的信息安全技术,确保乘客的个人信息和支付安全,为乘客提供安全可靠的购票环境。随着移动互联网的普及和智能设备的发展,汽车票网上预订系统网站将继续优化升级,提供更加便捷、智能的购票服务,满足乘客日益增长的需求。
关键词:汽车票网上预订系统;网站管理系统;B/S模式;软件架构
二、开发环境
开发语言:Java
框架:springboot
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql
数据库工具:Navicat11
开发软件:eclipse/myeclipse/idea
Maven包:Maven
————————————————
三、功能介绍
本系统设计时,确定详细功能,这些功能主要通过需求阶段的调研分析得来的,具体功能模块如下图,如图4-2,4-3所示。
图4-2 汽车票网上预订系统网站管理员功能结构设计
图4-3汽车票网上预订系统网站用户功能结构设计
四、核心代码
部分代码:
package com.example.controller;
import cn.hutool.core.util.StrUtil;
import cn.hutool.crypto.SecureUtil;
import com.example.common.Result;
import com.example.common.ResultCode;
import com.example.entity.Caiwu;
import com.example.exception.CustomException;
import com.example.service.CaiwuService;
import com.example.utils.MapWrapperUtils;
import com.example.utils.jwt.JwtUtil;
import com.example.vo.CaiwuVo;
import org.springframework.beans.BeanUtils;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@RestController
@RequestMapping(value = "/caiwu")
public class CaiwuController {
@Resource
private CaiwuService caiwuService;
@PostMapping
public Result<Caiwu> add(@RequestBody CaiwuVo caiwu) {
caiwuService.add(caiwu);
return Result.success(caiwu);
}
@PostMapping("/deleteList")
public Result<Caiwu> deleteList(@RequestBody CaiwuVo caiwu) {
caiwuService.deleteList(caiwu.getList());
return Result.success();
}
@DeleteMapping("/{id}")
public Result delete(@PathVariable Long id) {
caiwuService.delete(id);
return Result.success();
}
@PutMapping
public Result update(@RequestBody CaiwuVo caiwu) {
caiwuService.update(caiwu);
return Result.success();
}
@GetMapping("/{id}")
public Result<Caiwu> detail(@PathVariable Integer id) {
Caiwu caiwu = caiwuService.findById(id);
return Result.success(caiwu);
}
@GetMapping
public Result<List<Caiwu>> all() {
return Result.success(caiwuService.list());
}
@PostMapping("/page")
public Result<CaiwuVo> page(@RequestBody CaiwuVo caiwuVo) {
return Result.success(caiwuService.findPage(caiwuVo));
}
@PostMapping("/login")
public Result login(@RequestBody Caiwu caiwu, HttpServletRequest request) {
if (StrUtil.isBlank(caiwu.getZhanghao()) || StrUtil.isBlank(caiwu.getMima())) {
throw new CustomException(ResultCode.PARAM_LOST_ERROR);
}
Caiwu login = caiwuService.login(caiwu);
// if(!login.getStatus()){
// return Result.error("1001","状态限制,无法登录系统");
// }
if(login != null) {
HashMap hashMap = new HashMap();
hashMap.put("user", login);
Map<String, Object> map = MapWrapperUtils.builder(MapWrapperUtils.KEY_USER_ID,caiwu.getId());
String token = JwtUtil.creatToken(map);
hashMap.put("token", token);
return Result.success(hashMap);
}else {
return Result.error();
}
}
@PutMapping("/updatePassword")
public Result updatePassword(@RequestBody Caiwu info, HttpServletRequest request) {
Caiwu caiwu = caiwuService.findById(info.getId());
String oldPassword = SecureUtil.md5(info.getMima());
if (!oldPassword.equals(caiwu.getMima())) {
return Result.error(ResultCode.PARAM_PASSWORD_ERROR.code, ResultCode.PARAM_PASSWORD_ERROR.msg);
}
info.setMima(SecureUtil.md5(info.getNewPassword()));
Caiwu caiwu1 = new Caiwu();
BeanUtils.copyProperties(info, caiwu1);
caiwuService.update(caiwu1);
return Result.success();
}
}
五、效果图
六、文章目录
目 录
摘 要 I
Abstract II
第1章 绪论 3
1.1 项目研究的背景 3
1.2开发目的和意义 3
1.3国内外研究现状 4
第2章 系统开发工具 5
2.1 Java编程语言 5
2.2 B/S模式 6
2.3 MySQL数据库 6
2.4 后端框架介绍 7
2.4.1 SpringBoot介绍 7
2.4.2 Mybatis 介绍 7
2.4.3 SpringMvc介绍 7
2.5 HTML技术技术 7
2.6 VUE框架介绍 8
2.7 JavaScript介绍 8
第3章 系统分析 9
3.1 概述 9
3.2 功能需求 9
3.3 非功能性需求 11
3.4 系统特色 12
3.5 可行性研究 12
3.5.1财务的可行性 12
3.5.2技术上的可行性 12
3.5.3操作的可行性 13
第4章 系统总体设计 13
4.1 系统架构设计 13
4.1.1体系结构 13
4.1.2 系统功能结构设计 14
4.2 系统数据库设计 15
4.2.1 数据库设计概述 15
4.2.2 数据库表的设计 16
第5章 系统功能实现 19
5.1登录模块的实现 19
5.2管理员管理模块 19
5.3用户管理模块 20
5.4新闻数据管理模块 20
5.5留言管理模块 21
5.6车次管理模块 21
第6章 系统测试 23
6.1 测试定义 23
6.2 测试目的 23
6.3 测试方案 23
6.4 系统分析 25
第7章 总结 26
参考文献 27
致谢 28