分享一个基于SpringBoot 2.x 实现的私人网盘项目
JAVA小咖秀
共 1339字,需浏览 3分钟
·
2020-11-08 21:31
环境搭建
软件 | 版本 | 功能 | 地址 |
---|---|---|---|
SpringBoot | 2.2.6 | 全能框架 | https://spring.io/projects/spring-boot/ |
elFinder | 2.1.38 | 文件管理 | https://studio-42.github.io/elFinder/ |
文件管理
文件以及文件夹新增,删除,移动,重名
在线打包文件
文件下载、上传
在线预览文件,图片
在线处理图片,文件
配置
配置参数:
# ===================================
# 网盘
# ===================================
file-manager.command = com.tools.common.elfinder.command
file-manager.thumbnail.width=80
file-manager.volumes[0].Node=
file-manager.volumes[0].source=fileSystem
file-manager.volumes[0].alias=file
file-manager.volumes[0].path=D://cloudFile
file-manager.volumes[0].isDefault=true
file-manager.volumes[0].locale=
file-manager.volumes[0].constraint.locked=false
file-manager.volumes[0].constraint.readable=true
file-manager.volumes[0].constraint.writable=true
映射配置:
@Component
@Data
@ConfigurationProperties(prefix="file-manager")
public class ElfinderConfiguration {
private Thumbnail thumbnail;
private String command;
private List volumes = new ArrayList<>();
private Long maxUploadSize = -1L;
}
预览
小结
之前整合过 SpringBoot1.x 的版本的网盘项目,不过 SpringBoot2.x 稍微有点变化,做了一点点处理,后续会跟进更多功能,比如多用户文件管理、文件预览鉴权等等一系列功能。
评论