基于ssm框架的视频播放系统设计与实现

 2022-03-29 07:03

论文总字数:27394字

摘 要

我国在2016年“十三五”规划中明确地提出,要将培育人工智能、第五代移动通信、移动智能终端和先进传感器等新一代信息技术产业的发展作为重点方向。近年来随着智能手机、平板电脑、笔记本电脑等智能终端的快速普及,全国人民几乎每个人都拥有一部智能手机,每个家庭拥有一部电脑。国家通信部多次向我国各个通信运营商提出提速降费的政策要求,使得现在以及可预期的将来,不仅流量费、宽带费越来越实惠,通信速度更是越来越快。目前的移动网络,已经使得人们能随时随地地在线观看视频,这也促进了在线视频网站的快速发展。

本论文设计并实现了一个符合影视剧迷们需求的在线视频网站。首先,本论文以广大影视剧迷们为研究对象,深入了解影视剧迷对在线视频观看视频的需求,并形成系统需求分析,并基于此分析完成在线视频网站的设计工作。其次,本论文以java为服务端的开发语言,以html5、jsp、css、javascript、ajax等前端语言作为前端开发语言,使用spring、springMVC、mybatis(SSM)作为整体的开发框架,使用MySQL作为数据库,使用Eclipse作为IDE工具,使用Tomcat作为web容器,最终完成在线视频网站的实现工作。

该在线视频网站被分为两大系统:前台系统和后台管理系统。其中前台系统服务于用户交互;后台管理系统服务于管理网站。通过对系统的详细设计,使用户不仅能观看和下载网站提供的视频、同时还能上传自己的视频与其他用户分享。此外经过大量的调研和测试,使得整个系统不仅为影视剧迷们使用起来操作简单方便快捷,也让网站管理者能对网站进行整体管理与把控,真正达到信息化、规范化、高效管理化的目的。

关键词:在线视频网站;网站的设计与实现;SSM;Ajax;数据库设计

Abstract

In the "13th Five-Year Plan" of 2016, China clearly stated that the development of a new generation of information technology industries such as artificial intelligence, fifth-generation mobile communications, mobile intelligent terminals and advanced sensors should be the key direction. In recent years, with the rapid spread of smart terminals such as smartphones, tablets, and notebook computers, almost everyone in the country has a smart phone, and each family owns a computer. The Ministry of Communications has repeatedly made policy requirements for speed reduction and fee reduction for various communication operators in China, so that not only traffic and broadband charges will become more affordable, but also communication speed will be faster and faster in the present and expected future. The current mobile network has enabled people to watch videos online anytime, anywhere, which also promotes the rapid development of online video sites.

This thesis designs and implements an online video website that meets the needs of film and television fans. First of all, this thesis takes the majority of film and television fans as the research object, and deeply understands the needs of TV drama fans to watch video on online video, and forms system demand analysis, and based on this analysis, completes the design work of online video website. Secondly, this thesis uses java as the server-side development language, with html5, jsp, css, javascript, ajax and other front-end languages ​​as the front-end development language, using spring, springMVC, mybatis (SSM) as the overall development framework, using MySQL to do For the database, use Eclipse as an IDE tool, use Tomcat as a web container, and finally complete the implementation of the online video site.

Online video sites are divided into two major systems: the front-end system and the back-end management system. The foreground system is used for user interaction; the background management system is used to manage websites. Through the detailed design of the system, users can not only watch and download the videos provided by the website, but also upload their own videos to share with other users. In addition, after a lot of research and testing, the whole system is not only simple and convenient for the use of film and television fans, but also allows the website administrator to manage and control the website as a whole, and truly achieve informationization, standardization and efficient management. purpose.

Key words: Online video website; website design and implementation; SSM; Ajax; database design

目 录

摘 要 Ⅰ

Abstract Ⅱ

第一章 绪论 1

1.1 项目背景 1

1.2 项目实施目的和意义 1

1.3 国内外发展现状 2

1.3.1国内发展现状 2

1.3.2国外发展现状 2

1.4 毕设工作内容以及论文结构安排 2

1.4.1毕设工作内容 2

1.4.2论文结构安排 4

第二章 系统介绍及关键技术介绍 5

2.1 系统介绍 5

2.2 系统关键技术介绍 5

2.2.1java语言 5

2.2.2eclipse IDE工具 5

2.2.3spring 6

2.2.4springMVC 6

2.2.5 mybatis 6

2.2.6 SSM框架与SSH框架对比 7

2.2.7 AJAX 7

第三章 系统需求分析与概要设计 9

3.1 系统业务流程 9

3.2 系统功能性需求 10

3.3 系统用户权限 11

3.4 系统非功能需求 11

3.4.1数据安全 11

3.4.2系统结构设计 11

第四章 系统详细设计与实现 13

4.1 系统的设计目标与原则 13

4.2 系统功能设计 13

4.3 数据库设计 15

4.3.1数据库概念模型设计 15

4.3.2数据库逻辑模型设计 16

4.3.3数据库表设计 16

4.4 系统功能模块实现 19

4.1.1SSM开发框架介绍 19

4.1.2SSM开发步骤介绍 20

4.4.3用户登录模块 23

4.4.4用户注册模块 24

4.4.5视频上传 25

4.4.6用户主页模块 27

4.4.7轮播图管理 27

4.4.8视频管理模块 28

4.4.9管理员主页模块 29

4.4.10弹幕评论模块 30

第五章 系统测试 32

5.1 后台管理员登录测试 32

5.2 用户注册模块测试 33

5.3 视频管理模块测试 34

5.4 首页轮播图模块测试 35

5.5 系统管理员角色管理模块测试 37

5.6 后台用户管理模块测试 38

5.7 弹幕模块测试 39

5.8评论模块测试 40

5.9视频评论管理模块测试 41

5.10弹幕管理模块测试 41

第六章 结束语 43

6.1 总结 43

6.2 未来工作展望 43

参考文献 44

致 谢 45

第一章 绪论

1.1 项目背景

伴随着社会经济的飞速发展,智能手机以及电脑的快速普及,计算机技术也取得了突飞猛进的发展;同时,各大运营商积极响应国务院的号召,不仅实施了降费提速的措施,更是取消了国内漫游。再加上4G网络的大面积普及,各个网络套餐(比如腾讯大王卡、天神卡)均实行了流量定向无限量或者流量全国非定向无限量的优惠方案。使得影视剧迷们在何时何地在线观看视频不再受任何网络以及硬件的约束。在线观看视频已经成为人们日常生活的一部分。这就意味着在线视频网站就成为了人们的必须品。在线视频网站越来越受人们的喜欢和依赖。在线视频网站不仅能为影视剧迷们提供丰富的视频,而且还能让影视剧迷们随时随地的观看,不再受时间和空间的限制,影视剧迷们观看视频提供了极大的便利。

随着网络的快速发展,由腾讯视频、爱奇艺视频、优酷视频等国内较大的网络视频平台大力推出网剧,使得传统的电视剧遭受到极大的冲击,再加上传统电视剧由于大量的广告以及播放时间的限制,现在使用传统电视机观看视频已经成为影视剧迷们观看视频的次要选择。在线观看视频已经成为人们观看视频的首要选择。利用计算机技术与现代影视剧创造相结合,开发基于SSM在线视频网站能够很好的满足人们的观看视频需求。

1.2 项目实施目的和意义

由于科技的进步、社会经济的发展,传统的电视机对观看影视剧存在诸多的限制,例如:不能去广告;电视剧播放的视频存在时效性,必须要在指定的时间段内观看;供选择的种类较少;存在空间上的限制,几乎不能在室外或者床上观看等。而在线视频网站不仅能解决传统电视机存在的缺陷,而且其能为用户提供更多的功能,例如用户可以上传自己的视频,供他人观看,还能评论、下载网站视频和其他用户所提供的视频。

剩余内容已隐藏,请支付后下载全文,论文总字数:27394字

您需要先支付 80元 才能查看全部内容!立即支付

该课题毕业论文、开题报告、外文翻译、程序设计、图纸设计等资料可联系客服协助查找;