Java项目:电影售票系统设计和实现(java+Springboot+ssm+mysql+jsp+maven) 您所在的位置:网站首页 基于web的电影院售票系统有哪些 Java项目:电影售票系统设计和实现(java+Springboot+ssm+mysql+jsp+maven)

Java项目:电影售票系统设计和实现(java+Springboot+ssm+mysql+jsp+maven)

2024-01-05 04:18| 来源: 网络整理| 查看: 265

源码获取:博客首页 "资源" 里下载! 一、项目简述

Java电影院系统功能:

登陆注册模块 :

普通用户可以直接访问影院主界面进行电影浏览、查询等 功能,但是当用户操作需要读取用户信息时就要求用户进 行登录了。普通用户可以直接访问登录页面或者通过页面 的登录选项进行登录,当用户不拥有账号时,即可通过注 册链接进行账号注册,注册完毕后自动返回登录页面,方 便用户登录。

电影查询浏览模块 :

电影浏览查询模块作为本系统最重要的模块之一,面向普 通用户。其意指通过不同方式向用户展示电影并提供电影 详情链接,其主要包括以下子模块:(1) 电影类型查询:用 户可以根据个人类型喜好对影片进行筛选。(2) 电影放映 厅类型查询:用户可以根据个人对放映厅要求对影片进行 筛选。(3) 电影中间字查询:用户可以根据电影名中间字 对电影进行模糊查询。(4) 最新电影:用户向用户展示系 统最新添加的电影。(5) 热门电影:基于评论和心愿单功 能计算电影热度值,并向用户展示高热度的电影。(6) 最 新评论电影:基于评论功能,向用户展示最新评论下的电 影。

电影信息管理模块 :

电影信营:管理模块的面向对象是管理员用户,管理员在电 影信息管理页面对电影信息查询、修改、添加,需要注意 的是对电影海报的操作类型取决于新旧电影。 放映厅管理模块 放映厅管理模块的主要面向对象同样是管理员用户,管理员管理着电影与放映厅间的关联关系,普通用户只在具体 电影选择上才会展现其关系

场次管理模块 :

场次管理模块是放映厅管理模块的系统功能延伸,其主要 面向对象仍是管理员用户,管理员在电影与放映厅关系存 在的情况下对场次信息进行管理,反之操作条件不成立, 普通用户只在具体电影选择上才会展现其关联信息。需要 注意的是,不允许管理员对已售出票的场次进行场次取 消,直到普通用户全部退票。

票务管理模块 :

章务管理底块又是场次管理模块的系统功能延伸,其作为本系统最重要的模块之一,主要面向对象为普通用户。其普通用户在登录情况下选择场次进行选座购票,购票完毕 后可在个人票务管理页面对个人购票信息进行查询、退票。管理员在票务总览页面对所有票务进行查询,不允许对任何票务进行修改。

二项目运行 、

环境配置: Jdk1.8 + Tomcat8.5 + mysql + Eclispe (IntelliJ IDEA,Eclispe,MyEclispe,Sts 都支持)

项目技术: JSP +Springboot+ SpringMVC + MyBatis + ThymeLeaf + HTML+ JavaScript + JQuery + Ajax + maven等等

影厅管理控制层: /** * 影厅管理 */ @RestController public class HallController { @Autowired private HallService hallService; @RequestMapping(value = "hall/all", method = RequestMethod.GET) public ResponseVO searchAllHall(){ return hallService.searchAllHall(); } @RequestMapping(value = "hall/add", method = RequestMethod.POST) public ResponseVO addHall(@RequestBody Hall addHallForm){return hallService.addHall( addHallForm);} @RequestMapping(value = "hall/update", method = RequestMethod.POST) public ResponseVO updateHall(@RequestBody Hall updateHallForm){return hallService.updateHall( updateHallForm);} }

电影管理控制层: /** * 电影管理 */ @RestController public class MovieController { @Autowired private MovieService movieService; @Autowired private MovieLikeService movieLikeService; @RequestMapping(value = "/movie/add", method = RequestMethod.POST) public ResponseVO addMovie(@RequestBody MovieForm addMovieForm){ return movieService.addMovie(addMovieForm); } @RequestMapping(value = "/movie/{id}/{userId}", method = RequestMethod.GET) public ResponseVO searchOneMovieByIdAndUserId(@PathVariable int id, @PathVariable int userId){ return movieService.searchOneMovieByIdAndUserId(id, userId); } @RequestMapping(value = "/movie/all", method = RequestMethod.GET) public ResponseVO searchAllMovie(){ //返回结果中包括已经下架的电影 return movieService.searchAllMovie(); } @RequestMapping(value = "/movie/all/exclude/off", method = RequestMethod.GET) public ResponseVO searchOtherMoviesExcludeOff(){ //返回结果中不包括已经下架的电影 return movieService.searchOtherMoviesExcludeOff(); } @RequestMapping(value = "/movie/{movieId}/like", method = RequestMethod.POST) public ResponseVO likeMovie(@PathVariable int movieId,@RequestParam int userId){ return movieLikeService.likeMovie(userId,movieId); } @RequestMapping(value = "/movie/{movieId}/unlike", method = RequestMethod.POST) public ResponseVO unlikeMovie(@PathVariable int movieId,@RequestParam int userId){ return movieLikeService.unLikeMovie(userId,movieId); } @RequestMapping(value = "/movie/{movieId}/like/count", method = RequestMethod.GET) public ResponseVO getMovieLikeCounts(@PathVariable int movieId){ return movieLikeService.getCountOfLikes(movieId); } @RequestMapping(value = "/movie/{movieId}/like/date", method = RequestMethod.GET) public ResponseVO getMovieLikeCountByDate(@PathVariable int movieId){ return movieLikeService.getLikeNumsGroupByDate(movieId); } @RequestMapping(value = "/movie/search",method = RequestMethod.GET) public ResponseVO getMovieByKeyword(@RequestParam String keyword){ return movieService.getMovieByKeyword(keyword); } @RequestMapping(value = "/movie/off/batch",method = RequestMethod.POST) public ResponseVO pullOfBatchOfMovie(@RequestBody MovieBatchOffForm movieBatchOffForm){ return movieService.pullOfBatchOfMovie(movieBatchOffForm); } @RequestMapping(value = "/movie/update",method = RequestMethod.POST) public ResponseVO updateMovie(@RequestBody MovieForm updateMovieForm){ return movieService.updateMovie(updateMovieForm); } }

排片信息管理控制层: /** * 排片管理 */ @RestController public class ScheduleController { @Autowired private ScheduleService scheduleService; @RequestMapping(value = "/schedule/add", method = RequestMethod.POST) public ResponseVO addSchedule(@RequestBody ScheduleForm scheduleForm){ return scheduleService.addSchedule(scheduleForm); } @RequestMapping(value = "/schedule/update", method = RequestMethod.POST) public ResponseVO updateSchedule(@RequestBody ScheduleForm scheduleForm){ return scheduleService.updateSchedule(scheduleForm); } @RequestMapping(value = "/schedule/search", method = RequestMethod.GET) public ResponseVO searchSchedule(@RequestParam int hallId, @RequestParam Date startDate){ //这里传递startDate参数时,前端传的是用/分隔的时间,例如startDate=2019/04/12 return scheduleService.searchScheduleSevenDays(hallId, startDate); } @RequestMapping(value = "/schedule/search/audience", method = RequestMethod.GET) public ResponseVO searchAudienceSchedule(@RequestParam int movieId){ return scheduleService.searchAudienceSchedule(movieId); } @RequestMapping(value = "/schedule/view/set", method = RequestMethod.POST) public ResponseVO setScheduleView(@RequestBody ScheduleViewForm scheduleViewForm){ return scheduleService.setScheduleView(scheduleViewForm); } @RequestMapping(value = "/schedule/view", method = RequestMethod.GET) public ResponseVO getScheduleView(){ return scheduleService.getScheduleView(); } @RequestMapping(value = "/schedule/delete/batch", method = RequestMethod.DELETE) public ResponseVO deleteBatchOfSchedule(@RequestBody ScheduleBatchDeleteForm scheduleBatchDeleteForm){ return scheduleService.deleteBatchOfSchedule(scheduleBatchDeleteForm); } @RequestMapping(value = "/schedule/{id}", method = RequestMethod.GET) public ResponseVO getScheduleById(@PathVariable int id){ return scheduleService.getScheduleById(id); } } 源码获取:博客首页 "资源" 里下载! 


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有