java基于springboot+vue的酒店预订网站——计算机毕业设计
Posted qq_1262330535
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java基于springboot+vue的酒店预订网站——计算机毕业设计相关的知识,希望对你有一定的参考价值。
运行环境:
开发工具:IDEA /Eclipse
数据库:MYSQL5.7
应用服务:Tomcat7/Tomcat8
使用框架springboot+vue
项目介绍
民宿管理平台系统,主要的模块包括管理员;首页、个人中心、用户管理、商家管理、民宿信息管理、房间类型管理、房间信息管理、房间预订管理、房间退订管理、投诉反馈管理、我的收藏管理、系统管理,用户;首页、个人中心、民宿信息管理、房间信息管理、房间预订管理、房间退订管理、投诉反馈管理、我的收藏管理,商家用户;首页、个人中心、民宿信息管理、房间信息管理、房间预订管理、房间退订管理、投诉反馈管理、我的收藏管理,前台首页;首页、民宿信息、房间信息、个人中心、后台管理、在线客服等功能
控制器类
/**
* 登录相关
*/
@RequestMapping("config")
@RestController
public class ConfigController
@Autowired
private ConfigService configService;
/**
* 列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,ConfigEntity config)
EntityWrapper<ConfigEntity> ew = new EntityWrapper<ConfigEntity>();
PageUtils page = configService.queryPage(params);
return R.ok().put("data", page);
/**
* 列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,ConfigEntity config)
EntityWrapper<ConfigEntity> ew = new EntityWrapper<ConfigEntity>();
PageUtils page = configService.queryPage(params);
return R.ok().put("data", page);
/**
* 信息
*/
@RequestMapping("/info/id")
public R info(@PathVariable("id") String id)
ConfigEntity config = configService.selectById(id);
return R.ok().put("data", config);
/**
* 详情
*/
@IgnoreAuth
@RequestMapping("/detail/id")
public R detail(@PathVariable("id") String id)
ConfigEntity config = configService.selectById(id);
return R.ok().put("data", config);
/**
* 根据name获取信息
*/
@RequestMapping("/info")
public R infoByName(@RequestParam String name)
ConfigEntity config = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));
return R.ok().put("data", config);
/**
* 保存
*/
@PostMapping("/save")
public R save(@RequestBody ConfigEntity config)
// ValidatorUtils.validateEntity(config);
configService.insert(config);
return R.ok();
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody ConfigEntity config)
// ValidatorUtils.validateEntity(config);
configService.updateById(config);//全部更新
return R.ok();
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids)
configService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
效果图
目 录
摘 要 I
Abstracts I
目 录 I
第1章 绪论 1
1.1课题背景 1
1.2研究意义 1
1.3研究内容 2
第2章 技术介绍 2
2.1相关技术 3
2.2 Java技术 3
2.3 mysql数据库 4
2.4 Tomcat介绍 4
2.5 Spring Boot框架 5
第3章 需求分析 5
3.1需求分析概述 6
3.2可行性分析 6
3.2.1经济可行性 6
3.2.2技术可行性 7
3.3系统功能设计 7
第4章 系统设计 7
4.1系统结构设计 7
4.2数据库设计 8
4.2.1实体ER图 8
4.2.2数据表 10
第5章 系统实现 14
5.1管理员功能模块 14
5.2前台首页功能模块 18
5.3用户功能模块 18
第6章 系统测试 23
6.1测试定义及目的 23
6.2测试方法 23
6.3测试模块 24
6.4测试结果 25
结 论 26
致 谢 27
参考文献 28
以上是关于java基于springboot+vue的酒店预订网站——计算机毕业设计的主要内容,如果未能解决你的问题,请参考以下文章
酒店管理|基于Springboot+Vue前后端分离实现酒店管理系统
酒店管理|基于Springboot+Vue前后端分离实现酒店管理系统
基于java+springboot的民宿预订信息网站-计算机毕业设计
基于java+springboot的民宿预订信息网站-计算机毕业设计