小言_互联网的博客

网盘系统|基于SpringBoot的网盘系统的设计与实现

255人阅读  评论(0)

作者主页:编程指南针

作者简介:Java领域优质创作者、CSDN博客专家 、掘金特邀作者、多年架构师设计经验、腾讯课堂常驻讲师

主要内容:Java项目、毕业设计、简历模板、学习资料、面试题库、技术互助

收藏点赞不迷路  关注作者有好处

文末获取源码 

项目编号:BS-XX-172

一,项目简介

 本次毕业设计的主要目的在于通过网络平台完成资源分享的设计与实现资源分享网络平台允许用户使用网络存储个人资源,也允许用户将自己的资源分享出来。分享资源能够很好的实现资源利用的传递,同时能与被分享者实现资源互换,完善资源所出现的需求问题,实现了解决分享资源难以共享的问题。系统会根据一个分享所获得的资源下载和保存数量对分享进行统计。而用户也可以使用搜索功能,根据分享的名称与标签,搜索自己想要的资源,解决了资源难以寻找的问题,使用户能轻易的找到自己想要的资源。

本系统设计了两种用户角色:普通用户和系统管理员。普通用户可以使用系统提供的网盘并对自己网盘中的资源文件进行管理,上传以及下载删除等,使用分享功能功能,以及在系统中查看查找上传的指定的系统文件。系统管理员除了能对普通用户的功能编辑管理等功能之外,还有进入后台管理模块的权限,可以对平台中的用户以及资源文件进行管理,还有新增、编辑和删除等众多模块关联的功能,对系统中用户文件进行处理的功能。该系统的功能模块图如图3-1所示。

 

图3-1系统功能模块图

普通用户可以使用系统的基础功能,如个人信息管理,上传下载文件,管理网盘文件,管理回收站文件,搜索文件,共享文件,用户功能用例图如图3-2所示。

 

图3-2 用户功能用例图

管理员可通过系统内置的账户登录,管理员账户除了能使用普通用户的所有功能,能进入后台管理页面对用户和文件进行管理,处理用户信息,处理文件信息等。管理员功能用例图如图3-3所示。

 

图3-3 管理员用例图

二,环境介绍

语言环境:Java:  jdk1.8

数据库:Mysql: mysql5.7

应用服务器:Tomcat:  tomcat8.5.31

开发工具:IDEA或eclipse

后台开发技术Springboot+Mybatis

前台开发技术:layui+jquery

三,系统展示

用户注册与登陆

图5-1 注册界面

 

图5-2 登录界面

网盘管理主界面

网盘文件管理

 

回收站管理

 

 文件分享

 提取文件

文件搜索

 

后台管理模块

 

角色管理

角色修改的功能,管理员在首页进入role.html,接着发送请求url到roleEdit.html中,接着提交角色修改后的表单请求到后台RoleController中通过roleUpdate()方法实现修改角色,接着存入数据库中然后返回给role.html显示修改完成后的数据。

角色菜单修改的功能,管理员在首页进入role.html,接着发送请求url到roleEditMenu.html中,接着提交角色菜单修改后的表单请求到后台RoleController中通过roleUpdateMenu()方法实现修改角色菜单,接着存入数据库中之后再返回给role.html显示修改完成后的菜单数据。

角色权限修改的功能,管理员在首页进入role.html,接着发送请求url到roleEditPermission.html中,接着提交角色修改后的表单请求到后台RoleController中通过roleUpdatePermission()方法实现修改角色权限,接着存入数据库中然后返回给role.html显示修改完成后的权限数据。

添加角色功能的实现是管理员为了添加角色信息点出弹出框然后在role.html中通过addRole指定路径跳转到roleAdd.html中将所要添加的表单信息通过点击添加按钮提交到RoleController中调用实现类中的saveRole()方法去添加角色信息加入到数据库中,数据库返回角色信息给role.html显示出角色信息。

 

 

 

 

四,核心代码展示


  
  1. package com.zcx.cloud.dict.controller;
  2. import java.util.List;
  3. import org.apache.shiro.authz.annotation.RequiresPermissions;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.PathVariable;
  7. import org.springframework.web.bind.annotation.PostMapping;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RestController;
  10. import com.zcx.cloud.common.constant.Constant;
  11. import com.zcx.cloud.common.controller.BaseController;
  12. import com.zcx.cloud.common.vo.PageInfo;
  13. import com.zcx.cloud.common.vo.Result;
  14. import com.zcx.cloud.dict.entity.DictKey;
  15. import com.zcx.cloud.dict.service.IDictKeyService;
  16. import com.zcx.cloud.menu.entity.Menu;
  17. import com.zcx.cloud.system.annotaion.SysLog;
  18. import com.zcx.cloud.system.exception.BusException;
  19. import com.zcx.cloud.system.exception.ExistsException;
  20. import com.zcx.cloud.util.StringUtil;
  21. /**
  22. * <p>
  23. * 数据字典键表 前端控制器
  24. * </p>
  25. */
  26. @RestController
  27. @RequestMapping("/dictKey")
  28. public class DictKeyController extends BaseController {
  29. @Autowired
  30. private IDictKeyService dictKeyService;
  31. /**
  32. * 获取数据表数据
  33. */
  34. @RequiresPermissions("dict:view")
  35. @GetMapping("getDictKeysPage")
  36. public Result getDictKeysPage (DictKey dictKey,PageInfo<DictKey> pageInfo) {
  37. try {
  38. Result result = dictKeyService.getDictKeysPage(dictKey,pageInfo);
  39. return result;
  40. } catch(Exception e) {
  41. e.printStackTrace();
  42. throw new BusException( "获取字典键表格失败");
  43. }
  44. }
  45. @SysLog("字典键添加")
  46. @RequiresPermissions("dict:add")
  47. @PostMapping("dictKeyAdd")
  48. public Result dictKeyAdd (DictKey dictKey) {
  49. try {
  50. dictKeyService.saveDictKey(dictKey);
  51. return new Result().success();
  52. } catch(ExistsException e) {
  53. return new Result().error().msg( "字典键码已存在");
  54. } catch(Exception e) {
  55. e.printStackTrace();
  56. throw new BusException( "字典键添加失败");
  57. }
  58. }
  59. @SysLog("删除字典键")
  60. @RequiresPermissions("dict:delete")
  61. @GetMapping("dictKeyDelete/{keyId}")
  62. public Result dictKeyDelete (@PathVariable("keyId")Long keyId) {
  63. try {
  64. dictKeyService.logicDelete(keyId);
  65. return new Result().success();
  66. } catch(Exception e) {
  67. e.printStackTrace();
  68. throw new BusException( "字典键删除失败");
  69. }
  70. }
  71. @SysLog("批量删除字典键")
  72. @RequiresPermissions("dict:delete")
  73. @GetMapping("dictKeyDeleteBatch/{dictKeyIdsStr}")
  74. public Result dictKeyDeleteBatch (@PathVariable("dictKeyIdsStr")String dictKeyIdsStr) {
  75. try {
  76. List<Long> dictKeyIds = StringUtil.stringToLongs(dictKeyIdsStr, Constant.COMMA);
  77. dictKeyService.logicDeleteBatch(dictKeyIds);
  78. return new Result().success();
  79. } catch(Exception e) {
  80. e.printStackTrace();
  81. throw new BusException( "批量字典键删除失败");
  82. }
  83. }
  84. @SysLog("修改字典键")
  85. @RequiresPermissions("dict:update")
  86. @PostMapping("dictKeyUpdate")
  87. public Result dictKeyUpdate (DictKey dictKey) {
  88. try {
  89. dictKeyService.updateDictKey(dictKey);
  90. return new Result().success();
  91. } catch(ExistsException e) {
  92. return new Result().error().msg( "字典键已存在");
  93. } catch(Exception e) {
  94. e.printStackTrace();
  95. throw new BusException( "修改字典键失败");
  96. }
  97. }
  98. }


  
  1. package com.zcx.cloud.dict.controller;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.stereotype.Component;
  4. import org.springframework.ui.Model;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.PathVariable;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import com.zcx.cloud.dict.entity.DictKey;
  9. import com.zcx.cloud.dict.entity.DictValue;
  10. import com.zcx.cloud.dict.service.IDictKeyService;
  11. import com.zcx.cloud.dict.service.IDictValueService;
  12. import com.zcx.cloud.util.ViewUtil;
  13. @Component("dictViewController")
  14. @RequestMapping("/base/dict")
  15. public class ViewController {
  16. @Autowired
  17. private IDictKeyService dictKeyService;
  18. @Autowired
  19. private IDictValueService dictValueService;
  20. @GetMapping("dictKey")
  21. public String dictKey () {
  22. return ViewUtil.view( "base/dict/dictKey");
  23. }
  24. @GetMapping("dictKeyDetail/{keyId}")
  25. public String dictKeyDetail (@PathVariable("keyId")Long keyId, Model model) {
  26. DictKey dictKey = dictKeyService.getById(keyId);
  27. model.addAttribute(dictKey);
  28. return ViewUtil.view( "base/dict/dictKeyDetail");
  29. }
  30. @GetMapping("dictKeyAdd")
  31. public String dictKeyAdd () {
  32. return ViewUtil.view( "base/dict/dictKeyAdd");
  33. }
  34. @GetMapping("dictKeyEdit/{keyId}")
  35. public String dictKeyEdit (@PathVariable("keyId")Long keyId, Model model) {
  36. DictKey dictKey = dictKeyService.getById(keyId);
  37. model.addAttribute(dictKey);
  38. return ViewUtil.view( "base/dict/dictKeyEdit");
  39. }
  40. @GetMapping("dictValue/{keyCode}")
  41. public String dictValue (@PathVariable("keyCode")String keyCode, Model model) {
  42. model.addAttribute(keyCode);
  43. return ViewUtil.view( "base/dict/dictValue");
  44. }
  45. @GetMapping("dictValueDetail/{valueId}")
  46. public String dictValueDetail (@PathVariable("valueId")Long valueId, Model model) {
  47. DictValue dictValue = dictValueService.getById(valueId);
  48. model.addAttribute(dictValue);
  49. return ViewUtil.view( "base/dict/dictValueDetail");
  50. }
  51. @GetMapping("dictValueAdd/{keyCode}")
  52. public String dictValueAdd (@PathVariable("keyCode")String keyCode, Model model) {
  53. model.addAttribute(keyCode);
  54. return ViewUtil.view( "base/dict/dictValueAdd");
  55. }
  56. @GetMapping("dictValueEdit/{valueId}")
  57. public String dictValueEdit (@PathVariable("valueId")Long valueId, Model model) {
  58. DictValue dictValue = dictValueService.getById(valueId);
  59. model.addAttribute(dictValue);
  60. return ViewUtil.view( "base/dict/dictValueEdit");
  61. }
  62. }


  
  1. package com.zcx.cloud.menu.controller;
  2. import java.util.List;
  3. import org.apache.shiro.authz.annotation.RequiresPermissions;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.CrossOrigin;
  6. import org.springframework.web.bind.annotation.GetMapping;
  7. import org.springframework.web.bind.annotation.PathVariable;
  8. import org.springframework.web.bind.annotation.PostMapping;
  9. import org.springframework.web.bind.annotation.RequestMapping;
  10. import org.springframework.web.bind.annotation.RestController;
  11. import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
  12. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  13. import com.zcx.cloud.common.controller.BaseController;
  14. import com.zcx.cloud.common.vo.PageInfo;
  15. import com.zcx.cloud.common.vo.Result;
  16. import com.zcx.cloud.menu.entity.Menu;
  17. import com.zcx.cloud.menu.service.IMenuService;
  18. import com.zcx.cloud.system.annotaion.SysLog;
  19. import com.zcx.cloud.system.exception.BusException;
  20. import lombok.extern.java.Log;
  21. /**
  22. * <p>
  23. * 菜单表 前端控制器
  24. * </p>
  25. *
  26. */
  27. @CrossOrigin
  28. @RestController
  29. @RequestMapping("/menu")
  30. public class MenuController extends BaseController {
  31. @Autowired
  32. private IMenuService menuService;
  33. /**
  34. * 获取数据表数据
  35. */
  36. @RequiresPermissions("menu:view")
  37. @GetMapping("getMenusPage")
  38. public Result getMenusPage (Menu menu,PageInfo<Menu> pageInfo) {
  39. try {
  40. Result result = menuService.getMenusPage(menu,pageInfo);
  41. return result;
  42. } catch(Exception e) {
  43. e.printStackTrace();
  44. throw new BusException( "获取菜单表格失败");
  45. }
  46. }
  47. /**
  48. * 获取菜单树
  49. */
  50. @RequiresPermissions("menu:view")
  51. @GetMapping("getMenuTree")
  52. public Result getMenuTree (){
  53. try {
  54. List<Menu> menuTree = menuService.getMenuTree();
  55. return new Result().success().data(menuTree);
  56. } catch(Exception e) {
  57. e.printStackTrace();
  58. throw new BusException( "获取菜单树失败");
  59. }
  60. }
  61. @RequiresPermissions("menu:view")
  62. @GetMapping("getAllMenu")
  63. public Result getAllMenu () {
  64. try {
  65. List<Menu> menus = menuService.getAllMenu();
  66. return new Result().success().data(menus);
  67. } catch(Exception e) {
  68. e.printStackTrace();
  69. throw new BusException( "获取菜单失败");
  70. }
  71. }
  72. @SysLog("添加菜单")
  73. @RequiresPermissions("menu:add")
  74. @PostMapping("add")
  75. public Result menuAdd (Menu menu) {
  76. try {
  77. menuService.addMenu(menu);
  78. return new Result().success();
  79. } catch(Exception e) {
  80. e.printStackTrace();
  81. throw new BusException( "添加菜单失败");
  82. }
  83. }
  84. @SysLog("修改菜单")
  85. @RequiresPermissions("menu:update")
  86. @PostMapping("update")
  87. public Result updateMenu (Menu menu) {
  88. try {
  89. menuService.updateMenu(menu);
  90. return new Result().success();
  91. } catch(Exception e) {
  92. e.printStackTrace();
  93. throw new BusException( "更新菜单失败");
  94. }
  95. }
  96. @SysLog("删除菜单")
  97. @RequiresPermissions("menu:delete")
  98. @PostMapping("delete/{menuId}")
  99. public Result deleteMenu (@PathVariable("menuId")Long menuId) {
  100. try {
  101. menuService.logicDeleteMenu(menuId);
  102. return new Result().success();
  103. } catch(Exception e) {
  104. e.printStackTrace();
  105. throw new BusException( "删除菜单失败");
  106. }
  107. }
  108. }

  
  1. package com.zcx.cloud.permission.controller;
  2. import java.util.List;
  3. import org.apache.shiro.authz.annotation.RequiresPermissions;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.PathVariable;
  7. import org.springframework.web.bind.annotation.PostMapping;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RestController;
  10. import com.zcx.cloud.common.constant.Constant;
  11. import com.zcx.cloud.common.controller.BaseController;
  12. import com.zcx.cloud.common.vo.PageInfo;
  13. import com.zcx.cloud.common.vo.Result;
  14. import com.zcx.cloud.common.vo.SortInfo;
  15. import com.zcx.cloud.permission.entity.Permission;
  16. import com.zcx.cloud.permission.service.IPermissionService;
  17. import com.zcx.cloud.system.annotaion.SysLog;
  18. import com.zcx.cloud.system.exception.BusException;
  19. import com.zcx.cloud.system.exception.ExistsException;
  20. import com.zcx.cloud.util.StringUtil;
  21. /**
  22. * <p>
  23. * 权限表 前端控制器
  24. * </p>
  25. *
  26. */
  27. @RestController
  28. @RequestMapping("/permission")
  29. public class PermissionController extends BaseController {
  30. @Autowired
  31. private IPermissionService permissionService;
  32. @RequiresPermissions("permission:view")
  33. @GetMapping("getPermissionsPage")
  34. public Result getPermissionsPage (Permission permission,PageInfo<Permission> pageInfo,SortInfo sortInfo) {
  35. try {
  36. Result result = permissionService.getPermissionsPage(permission, pageInfo, sortInfo);
  37. return result;
  38. } catch (Exception e) {
  39. e.printStackTrace();
  40. throw new BusException( "获取权限分页信息失败");
  41. }
  42. }
  43. @RequiresPermissions("permission:view")
  44. @GetMapping("getAllPermGroupByAndSort")
  45. public Result getAllPermGroupByAndSort () {
  46. try {
  47. List<Permission> permissions = permissionService.getAllPermGroupByAndSort();
  48. return new Result().success().data(permissions);
  49. } catch(Exception e) {
  50. e.printStackTrace();
  51. throw new BusException( "获取权限列表失败");
  52. }
  53. }
  54. @SysLog("添加权限")
  55. @RequiresPermissions("permission:add")
  56. @PostMapping("permissionAdd")
  57. public Result permissionAdd (Permission permission) {
  58. try {
  59. permissionService.savePermission(permission);
  60. return new Result().success();
  61. } catch (ExistsException e) {
  62. return new Result().error().msg( "权限码已存在");
  63. } catch (Exception e) {
  64. e.printStackTrace();
  65. throw new BusException( "添加权限信息失败");
  66. }
  67. }
  68. @SysLog("删除权限")
  69. @RequiresPermissions("permission:delete")
  70. @GetMapping("permissionDelete/{permissionId}")
  71. public Result permissionDelete (@PathVariable("permissionId")Long permissionId) {
  72. try {
  73. permissionService.logicDelete(permissionId);
  74. return new Result().success();
  75. } catch (Exception e) {
  76. e.printStackTrace();
  77. throw new BusException( "删除权限信息失败");
  78. }
  79. }
  80. @SysLog("批量删除权限")
  81. @RequiresPermissions("permission:delete")
  82. @GetMapping("permissionDeleteBatch/{permissionIdsStr}")
  83. public Result permissionDeleteBatch (@PathVariable("permissionIdsStr")String permissionIdsStr) {
  84. try {
  85. List<Long> permissionIds = StringUtil.stringToLongs(permissionIdsStr, Constant.COMMA);
  86. permissionService.logicDeleteBatch(permissionIds);
  87. return new Result().success();
  88. } catch (Exception e) {
  89. e.printStackTrace();
  90. throw new BusException( "批量删除权限信息失败");
  91. }
  92. }
  93. @SysLog("修改权限")
  94. @RequiresPermissions("permission:update")
  95. @PostMapping("permissionUpdate")
  96. public Result roleUpdate (Permission permission) {
  97. try {
  98. permissionService.updatePermission(permission);
  99. return new Result().success();
  100. } catch(ExistsException e) {
  101. return new Result().error().msg( "权限码已存在");
  102. } catch (Exception e) {
  103. e.printStackTrace();
  104. throw new BusException( "修改权限失败");
  105. }
  106. }
  107. }

五,项目总结

本系统采用前后端分离设计,前端与后端相互独立,前端使用Vue+ ant-design开发,后端基于SpringBoot框架开发。前端项目名称CLOUD-DISK-FRONT,如图4-1所示。后端项目名称cloud-disk,如图4-2所示。

图4-1 前端项目结构图

前端目录说明如下:

build目录是对 webpack 开发和打包的相关设置,包括版本校验解析、引用解析、项目打包等;

config目录是对前端的诸多配置文件整合;

node_modules目录是前端的诸多依赖文件;

src目录存放的是前端的主要代码;

src目录下的assets目录存放的是前端的公共静态资源,包括图片等资源;

src目录下的components目录存放的是前端的组件;

src目录下的css目录存放的是前端的css文件;

src目录下的views目录存放的是前端的页面信息

static目录存放的是前端的一些静态文件资源;

App.vue文件是前端的入口组件;

main.js是前端的入口js文件。

 

图4-2 后端项目结构图

后端目录的说明如下:

src目录下存放的是后端项目的主要代码与配置文件;

src目录下的java目录存放的是后端的java代码;

com.zcx.cloud.controller包中存放的是控制层类;

com.zcx.cloud.mapper包中存放的是持久层类;

com.zcx.cloud.pojo包中存放的是实体类;

com.zcx.cloud.serviice包中存放的是业务层类;

com.zcx.cloud.util包中存放的是工具类;

com.zcx.cloud.vo包中存放的传输层对象;

com.zcx.cloud.constant包中存放的常量对象;

Application.java是Spring Boot的启动类;

src目录下的resources目录存放的是后端需要的的资源配置文件;

application .yml是整个项目的环境配置文件。

application-dev.yml是项目的环境配置文件需要的开发环境。

application-prod.yml是项目的环境配置文件需要的生产环境。

application-test.yml是项目的环境配置文件需要的测试环境。


转载:https://blog.csdn.net/whirlwind526/article/details/128693151
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场