短视频社交|电影点播平台Springboot+vue+ElementUI前后端分离

Posted qq_469603589

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了短视频社交|电影点播平台Springboot+vue+ElementUI前后端分离相关的知识,希望对你有一定的参考价值。

感谢您的关注,请收藏以免忘记,点赞以示鼓励,评论给以建议,爱你哟

项目编号:BS-PT-071

一,项目简介

本项目基于Springboot+vue开发实现了一个电影点播和短视频分享平台,名为爱奇艺影视平台系统。系统开发采用前后端分离的模式开发实现,分为前端系统用户功能模块和后台系统用户功能模块。

前端用户的主要功能:

1.注册登陆

2.全文检索

3.视频播放

4.点赞收藏

5.弹幕播放

6.评论影视

7.关注作者

8.视频上传

9.个人中心管理等等

后台用户的主要功能:

1.用户管理

2.视频管理

3.视频审核

4.播放量统计图形报表

5.分类管理等等

二,环境介绍

语言环境:Java:  jdk1.8

数据库:mysql: mysql5.7

应用服务器:Tomcat:  tomcat8.5.31

开发工具:IDEA或eclipse

后台开发技术:Springboot+Mybatis

前端开发技术:vue+ElementUI

三,系统展示

前端系统展示

注册登陆

播放视频

个人中心

消息中心

视频中心

视频上传

后台管理模块

用户管理

播放量统计

视频管理

视频审核

视频分类管理

四,核心代码展示

package com.hu.video.controller;

import com.hu.video.service.IAdminEChartService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.List;

/**
 * @author znz
 */
@Controller
@RequestMapping("admin")
public class AdminEChartController 

    @Autowired
    private IAdminEChartService adminEChartService;

    @RequestMapping("getFilmData")
    @ResponseBody
    public List<String> getFilmData() 
        return adminEChartService.getFilmData();
    

    @RequestMapping("getData")
    @ResponseBody
    public List<Integer> getData() 
        return adminEChartService.getData();

    

package com.hu.video.controller;

import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.hu.video.entity.Admin;
import com.hu.video.entity.TUser;
import com.hu.video.entity.dto.UserStateDTO;
import com.hu.video.service.IAdminUserService;
import com.hu.video.service.IUserService;
import com.hu.video.util.MsgResponse;
import com.hu.video.util.VueUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpSession;
import java.io.File;
import java.io.IOException;
import java.util.List;

@RequestMapping("admin")
@RestController
public class AdminUserController 

    @Autowired
    private IAdminUserService adminUserService;

    @Autowired
    private IUserService userService;

    @RequestMapping("login")
    public MsgResponse login(@RequestBody Admin admin, HttpSession session) 
        Admin admin1 = adminUserService.login(admin);
        if (admin1 == null) 
            return MsgResponse.fail("密码错误");
        
        session.setAttribute("admin", admin);
        return MsgResponse.success("登录成功", null);
    

    @RequestMapping("list")
    public List<UserStateDTO> userList() 
        return adminUserService.userList();
    

    @RequestMapping("getUserById")
    public UserStateDTO getUserById(Long id) 
        return adminUserService.getUserById(id);
    

    @RequestMapping(value = "editUser", method = RequestMethod.POST)
    public void editUser(@RequestBody TUser tUser) 
        adminUserService.editUser(tUser);
    

    @RequestMapping("deleteUser/id")
    public String deleteUser(@PathVariable Long id) 
        adminUserService.deleteUser(id);
        return "success";
    

    @RequestMapping(value = "addUser", method = RequestMethod.POST)
    public String addUser(@RequestBody TUser tUser) 
        adminUserService.addUser(tUser);
        return "success";
    

    /*---------上传头像--------*/
    @ResponseBody
    @RequestMapping("upload")
    public VueUtil upload(@RequestParam MultipartFile avatar, Long userId) 
        String workplace = System.getProperty("user.dir");
        //获取上传时候的文件名
        String suffix = avatar.getOriginalFilename().substring(avatar.getOriginalFilename().indexOf("."));
        String fileName = "icon" + String.valueOf(userId) + suffix;
        File newFile = new File(workplace + "/src/main/resources/static/uimages/" + fileName);
        userService.updateUserIcon("/user/getIcon/" + fileName,userId);
        try 
            avatar.transferTo(newFile);
            System.out.println("success");
            Object res = "http://localhost:8081/user/getIcon/icon" + userId + suffix;
            System.out.println(res);
            return VueUtil.success("上传成功",res);
         catch (IOException e) 
            e.printStackTrace();
            return VueUtil.fail("上传失败");
        
    

    @RequestMapping(value = "searchUser", method = RequestMethod.GET)
    public PageInfo<UserStateDTO> searchUser(int pageNum, int pageSize,String username) 
        //调用一个pageHelper的一个静态方法
        PageHelper.startPage(pageNum, pageSize);
        //用户记录
        List<UserStateDTO> userStateDTOS = adminUserService.getUserByName(username);
        //获得 用户分页
        PageInfo<UserStateDTO> pageInfo = new PageInfo<UserStateDTO>(userStateDTOS);
        return pageInfo;
    

    /**
     * 获得分页对象, pageNum是当前页数, pageSize是分页大小
     * @param pageNum
     * @param pageSize
     * @return
     */
    @RequestMapping(value = "pageInfo", method = RequestMethod.GET)
    public PageInfo<UserStateDTO> getPageInfo(int pageNum, int pageSize) 
        //调用一个pageHelper的一个静态方法
        PageHelper.startPage(pageNum, pageSize);
        //用户记录
        List<UserStateDTO> userStateDTOS = adminUserService.userList();
        //获得 用户分页
        PageInfo<UserStateDTO> pageInfo = new PageInfo<UserStateDTO>(userStateDTOS);
        return pageInfo;
    

package com.hu.video.controller;

import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.hu.video.entity.TState;
import com.hu.video.entity.TUser;
import com.hu.video.entity.TVideo;
import com.hu.video.entity.TVideotype;
import com.hu.video.entity.dto.VideoInfoDTO;
import com.hu.video.service.IAdminVideoService;
import com.hu.video.service.IStateService;
import com.hu.video.service.IVideoService;
import com.hu.video.service.IVideoTypeService;
import com.hu.video.util.DateUtil;
import com.hu.video.util.MsgResponse;
import com.hu.video.util.VueUtil;
import com.mysql.jdbc.log.Log;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;

import java.io.File;
import java.io.IOException;
import java.util.List;

@RestController
@RequestMapping("admin")
public class AdminVideoController 


    @Autowired
    private IAdminVideoService adminVideoService;

    @Autowired
    private IStateService stateService;

    @Autowired
    private IVideoService videoService;

    @Autowired
    private IVideoTypeService videoTypeService;

    private static String aVideoTitle;

    @RequestMapping("deleteVideo/id")
    public String deleteVideo(@PathVariable Long id) 
        adminVideoService.deleteVideo(id);
        return "success";
    

    @RequestMapping("editVideo")
    public String editVideo(@RequestBody TVideo video) 
        adminVideoService.editVideo(video);
        return "success";
    
    @RequestMapping("getVideoById")
    public VideoInfoDTO getVideoById(Long id) 
        return adminVideoService.getVideoById(id);
    

    @RequestMapping("getStateList")
    public List<TState> getStateList() 
        return adminVideoService.getStateList();
    

    @RequestMapping("getVideoTypeList")
    public List<TVideotype> getVideoTypeList() 
        return adminVideoService.getVideoTypeList();
    


    @RequestMapping("restoreVideo/id")
    public String restoreVideo(@PathVariable Long id) 
        adminVideoService.restoreVideo(id);
        return "success";
    

    @RequestMapping("rdeleteVideo/id")
    public String rdeleteVideo(@PathVariable Long id) 
        adminVideoService.rdeleteVideo(id);
        return "success";
    
    @RequestMapping("addVideo")
    public String addVideo(@RequestParam String videoTitle,@RequestParam Long videoStateId,
                           @RequestParam String videoInfo, @RequestParam Long videoTypeId) 
        TUser user = new TUser();
        user.setUserId(1L);
        TVideo video = new TVideo();
        video.setUser(user);
        TState state = stateService.getStateByStateId(videoStateId);
        video.setVideoState(state);
        video.setVideoType(videoTypeService.getVideoTypeByVideoTypeId(videoTypeId));
        video.setVideoInfo(videoInfo);
        video.setVideoTitle(videoTitle);
        aVideoTitle = videoTitle;
        videoService.addVideo(video);
        return "200";
    

    @RequestMapping(value = "searchVideo", method = RequestMethod.GET)
    public PageInfo<VideoInfoDTO> searchVideo(int pageNum, int pageSize, String videoName) 
        //调用一个pageHelper的一个静态方法
        PageHelper.startPage(pageNum, pageSize);
        //视频记录
        List<VideoInfoDTO> videoInfoDTOs = adminVideoService.getiVideoByTitle(videoName);
        //获得 视频分页
        PageInfo<VideoInfoDTO> vidoePageInfo = new PageInfo<VideoInfoDTO>(videoInfoDTOs);
        return vidoePageInfo;
    


    /**
     * 获得分页对象, pageNum是当前页数, pageSize是分页大小
     *
     * @param pageNum
     * @param pageSize
     * @return
     */
    @RequestMapping(value = "videoPageInfo", method = RequestMethod.GET)
    public PageInfo<VideoInfoDTO> getPageInfo(int pageNum, int pageSize) 
        //调用一个pageHelper的一个静态方法
        PageHelper.startPage(pageNum, pageSize);
        //视频记录
        List<VideoInfoDTO> videoInfoDTOs = adminVideoService.videoList();
        //获得 视频分页
        PageInfo<VideoInfoDTO> vidoePageInfo = new PageInfo<VideoInfoDTO>(videoInfoDTOs);
        return vidoePageInfo;
    

    @RequestMapping(value = "underVideoPageInfo", method = RequestMethod.GET)
    public PageInfo<VideoInfoDTO> underVideoPageInfo(int pageNum, int pageSize) 
        //调用一个pageHelper的一个静态方法
        PageHelper.startPage(pageNum, pageSize);
        //视频记录
        List<VideoInfoDTO> videoInfoDTOs = adminVideoService.underVideoList();
        //获得 视频分页
        PageInfo<VideoInfoDTO> vidoePageInfo = new PageInfo<VideoInfoDTO>(videoInfoDTOs);
        return vidoePageInfo;
    

    @RequestMapping("adminVideoUpload")
    public MsgResponse adminVideoUpload(@RequestParam MultipartFile file) 
        String workplace = System.getProperty("user.dir");

        String suffix = file.getOriginalFilename().substring(file.getOriginalFilename().indexOf("."));
        String path = "/static/video/" + DateUtil.currentDateFormatString() + suffix;
        File newFile = new File(workplace + "/src/main/resources" + path);
        Long videoId = videoService.getVideoLastId(aVideoTitle);
        videoService.updateVideoPath(path, videoId);
        try 
            file.transferTo(newFile);
            return MsgResponse.success("上传成功", "http://localhost:8081" + path);
         catch (IOException e) 
            e.printStackTrace();
            return MsgResponse.fail("上传失败");
        
    

    @RequestMapping("editThumbnailImageUpload")
    public VueUtil editThumbnailImageUpload(@RequestParam MultipartFile avatar, Long videoId) 
        String workplace = System.getProperty("user.dir");
        String suffix = avatar.getOriginalFilename().substring(avatar.getOriginalFilename().indexOf("."));
        String fileName = "video" + String.valueOf(videoId) + suffix;
        File newFile = new File(workplace + "/src/main/resources/static/vimages/" + fileName);
        videoService.adminUpdateVideoImage("/video/getVideoImage/" + fileName, videoId);
        try 
            avatar.transferTo(newFile);
            System.out.println("success");
            Object res = "http://localhost:8081/video/getVideoImage/video" + videoId + suffix;
            return VueUtil.success("上传成功", res);
         catch (IOException e) 
            e.printStackTrace();
            return VueUtil.fail("上传失败");
        
    

    @RequestMapping("thumbnailImageupload")
    public VueUtil thumbnailImageupload(@RequestParam MultipartFile avatar) 
        String workplace = System.getProperty("user.dir");
        Long videoId = videoService.getVideoLastId(aVideoTitle);
        String suffix = avatar.getOriginalFilename().substring(avatar.getOriginalFilename().indexOf("."));
        String fileName = "video" + String.valueOf(videoId) + suffix;
        File newFile = new File(workplace + "/src/main/resources/static/vimages/" + fileName);
        videoService.adminUpdateVideoImage("/video/getVideoImage/" + fileName, videoId);
        try 
            avatar.transferTo(newFile);
            System.out.println("success");
            Object res = "http://localhost:8081/video/getVideoImage/video" + videoId + suffix;
            return VueUtil.success("上传成功", res);
         catch (IOException e) 
            e.printStackTrace();
            return VueUtil.fail("上传失败");
        
    



package com.hu.video.controller;

import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.hu.video.entity.TVideotype;
import com.hu.video.service.IAdminVideoTypeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

import java.util.List;

@RestController
@RequestMapping("admin")
public class AdminVideoTypeController 

    @Autowired
    private IAdminVideoTypeService adminVideoTypeService;

    @RequestMapping(value = "searchVideoType", method = RequestMethod.GET)
    public PageInfo<TVideotype> searchVideoType(int pageNum, int pageSize, String typeName) 
        //调用一个pageHelper的一个静态方法
        PageHelper.startPage(pageNum, pageSize);
        //视频记录
        List<TVideotype> videoTypes = adminVideoTypeService.getVideoTypeByName(typeName);
        //获得 视频分页
        PageInfo<TVideotype> vidoeTypeInfo = new PageInfo<TVideotype>(videoTypes);
        return vidoeTypeInfo;
    

    @RequestMapping(value = "categoryPageInfo", method = RequestMethod.GET)
    public PageInfo<TVideotype> categoryPageInfo(int pageNum, int pageSize) 
        //调用一个pageHelper的一个静态方法
        PageHelper.startPage(pageNum, pageSize);
        //视频记录
        List<TVideotype> videoTypes = adminVideoTypeService.categoryList();
        //获得 视频分页
        PageInfo<TVideotype> vidoeTypeInfo = new PageInfo<TVideotype>(videoTypes);
        return vidoeTypeInfo;
    

    @RequestMapping("addcategory")
    public String addVideoType(@RequestBody TVideotype videotype) 
        boolean flag = adminVideoTypeService.addVideoType(videotype);
        return flag ? "200" : "404";
    

    @RequestMapping("getCategory")
    public TVideotype getCategory(Long id) 
        return adminVideoTypeService.getCategoryById(id);
    

    @RequestMapping("deleteCategory/id")
    public String deleteCategory(@PathVariable("id") Long id) 
        boolean flag = adminVideoTypeService.deleteCategoryById(id);
        return flag ? "success" : "fail";
    


五,项目总结

视频播放为人们提供了丰富的信息来源,并在一定程度上丰富了人们的精神文明。而传统的视频播放手段如电视播放、影院播放,都存在一定的局限性。人们亟需一种能够实时播放网络视频资源的产品,在线视频播放系统的出现大放异彩,它汇聚了众多网络视频资源,以方便、快捷的使用方式深深的吸引着广大使用者。网络视频系统出现的初期动机是人们对广播电视观看需求的增加,而广播电视又不能随人们心意进行推送播放视频。同时随着网络信息技术的不断更新迭代,网络在线视频播放系统更是层出不穷
与此同时人们逐渐发现现有的收看电视对自身来说是被动的,任何通过广播电台和电视台播放的节目都不能再满足一般观众的要求,所以在播放视频的需求上一般观看用户掌握了更多的选择权和主动权。有了广大用户的需求支持,越来越多的在线视频播放系统如雨后春笋一般争相推出。为了进一步解决所有人对电视节目的需求,为广大观众提供更多的选择。本课题旨在设计一个能够满足广大观众多元化需求的在线视频播放系统,在该系统中,用户可以根据自身需求搜素想看的视频,满足用户自身需求的同时赢得口碑,积累用户基数,从而开拓市场。

基于SpringBoot的影视/短视频网站系统

PS:该项目《基于springboot的视频网站设计与实现》为本人毕业设计。使用的开发工具是idea和webstrom。使用了java、springboot、mybatis、thymeleaf、vue-element-admin等插件。

该内容是本人参考网上博客改写的系统并经过允许。

本系统前台视频点播系统使用springboot+thymeleaf的前后没有分离,后台管理页面使用的是springboot+vue前后端分离,前端框架是vue,直接使用的模板vue-element-admin

运行springboot 需要输入localhost:8081才能进入视频前台播放页面

如果你点进去了并运行成功了麻烦点个star

github地址

GitHub - Kissingbymodi/VideoSystem: 本人毕业设计

前台系统功能

游客模块

  • 注册用户

视频用户模块

  • 修改个人信息
  • 发布视频
  • 搜索视频
  • 发布弹幕
  • 关注用户

视频点播模块

  • 点赞视频
  • 收藏视频
  • 点评视频
  • 推荐视频

消息模块

  • 删除已读消息
  • 查看未读消息

后台视频管理模块

用户管理

  • 添加用户
  • 删除用户
  • 修改用户
  • 搜索用户
  • 视频播放量可视化图(这个个人想归为用户这一部分,确实是应该放在视频模块)

视频管理

  • 删除视频
  • 上传视频
  • 审核视频
  • 搜索视频
  • 修改视频

前台视频主界面

 登录页面

播放页面

 由于电脑原因之前改好的点击荣光影视便可回到视频主页代码和点击轮播图便可播放的代码都没了,大家可以自行对代码进行修改,只需写定URL。

后台页面截图

运行配置项目

首先修改一下java代码,注意自己的数据库密码是不是root

maven依赖下载好运行该文件

报错无误后

由于是vue前端框架,建议使用IDE工具打开后使用命令下载关于vue的依赖,当然前提需要安装node.js 我这边的node的版本v14.18.0 下载安装配置完在终端下输入一下命令

npm install

下载完成后没报错则使用运行后端代码

npm run dev

运行成功后显示

后续有人遇到的问题

你们不要在这个目录下使用npm install

这个是前后分离的项目,需要用开发工具分别打开

请注意我的目录

这是我打开的Java项目

 这是我打开的Vue项目

由于github视频不能传太多因此视频文件在网盘里

链接:https://pan.baidu.com/s/1p-OAGRIXEplq76xdEVIz3Q?pwd=9ub5 
提取码:9ub5

请把下好的视频文件放到video目录下


emmmm 应网友要求 特此补上 数据表的说明

 

 

应网友要求,将关于技术部分和用例部分的论文放到了网盘下,需要的自取

链接:https://pan.baidu.com/s/1WFH2R7Kkrzq0hCRZgODljA?pwd=ur7x 
提取码:ur7x

以上是关于短视频社交|电影点播平台Springboot+vue+ElementUI前后端分离的主要内容,如果未能解决你的问题,请参考以下文章

在线电影网,电影视频观看,视频点播源码

趣拍云:深耕细作 打造最专业短视频开发平台

视频系统程序,电影网站源码,视频点播源码

基于java web的在线电影网_视频点播系统

基于 MinIO 对象存储框架的短视频点播平台设计

基于SpringBoot的影视/短视频网站系统