Coder Social home page Coder Social logo

yohe88 / iclouddisk Goto Github PK

View Code? Open in Web Editor NEW

This project forked from blackmoden/iclouddisk

0.0 1.0 0.0 22.92 MB

云共享网盘,使用Springboot+Mybatis完成的线上网盘,轻松实现WEB端文件上传、分享、搜索、下载。

Java 100.00%

iclouddisk's Introduction

这个项目是什么

一个Java编写的云网盘项目,在这里你可以自由地搜索文件,上传文件,以及下载文件。
特色:可以决定分享或者私有化文件。

历史版本

  • Version 0.2 目前采用SpringBoot+Mybatis对项目进行了重构,增加了新功能: MD5校验->一致文件急速上传, 断点续连->经过迅雷等下载软件和浏览器测试

  • Version 0.1 目前采用struts+mybaits+Spring框架完成了云网盘的架构;以后会考虑用springMVC和其他框架重构。 前端页面为jsp

How to use

打包成war放到Tomcat中,注意application.properties中的配置需要修改,前端文件中的href需要修改。

预览

Image text

sql

USE icloud;

CREATE TABLE file ( id int(10) unsigned NOT NULL AUTO_INCREMENT, filename varchar(255) NOT NULL COMMENT '文件名', filepath varchar(600) NOT NULL COMMENT '文件路径', filesize varchar(255) NOT NULL COMMENT '文件大小', createtime date DEFAULT NULL COMMENT '创建日期', canshare int(2) NOT NULL COMMENT '0表示私有 1表示共享', user_id int(11) unsigned NOT NULL, MD5 varchar(255) DEFAULT NULL, PRIMARY KEY (id), KEY user_id (user_id), CONSTRAINT file_ibfk_1 FOREIGN KEY (user_id) REFERENCES user (id) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8;

CREATE TABLE user ( id int(11) unsigned NOT NULL AUTO_INCREMENT, username varchar(255) NOT NULL, password varchar(16) NOT NULL, comment varchar(255) DEFAULT NULL COMMENT '注释', isvip int(11) NOT NULL COMMENT '1是vip 0不是', PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

问题反馈

在使用中有任何问题,欢迎反馈给我,可以用以下联系方式跟我交流

iclouddisk's People

Contributors

blackmoden avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.